OpenXmlElement.NextSibling メソッド

定義

オーバーロード

NextSibling()

現在の OpenXmlElement 要素の直後にある OpenXmlElement 要素を取得します。 次の OpenXmlElement 要素がない場合は null (Visual Basic では Nothing) を返します。

NextSibling<T>()

現在の OpenXmlElement 要素に続く指定した型を持つ OpenXmlElement 要素を取得します。 次の OpenXmlElement がない場合は null (Visual Basic では Nothing) を返します。

NextSibling()

現在の OpenXmlElement 要素の直後にある OpenXmlElement 要素を取得します。 次の OpenXmlElement 要素がない場合は null (Visual Basic では Nothing) を返します。

public DocumentFormat.OpenXml.OpenXmlElement NextSibling ();
public DocumentFormat.OpenXml.OpenXmlElement? NextSibling ();
member this.NextSibling : unit -> DocumentFormat.OpenXml.OpenXmlElement
Public Function NextSibling () As OpenXmlElement

戻り値

現在の OpenXmlElement 要素のすぐ後に続く OpenXmlElement 要素。

適用対象

NextSibling<T>()

現在の OpenXmlElement 要素に続く指定した型を持つ OpenXmlElement 要素を取得します。 次の OpenXmlElement がない場合は null (Visual Basic では Nothing) を返します。

public T NextSibling<T> () where T : DocumentFormat.OpenXml.OpenXmlElement;
public T? NextSibling<T> () where T : DocumentFormat.OpenXml.OpenXmlElement;
member this.NextSibling : unit -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Function NextSibling(Of T As OpenXmlElement) () As T

型パラメーター

T

戻り値

T

現在の OpenXmlElement 要素に続く指定した型を持つ OpenXmlElement 要素。

適用対象