Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns a collection of Element objects that represents all the direct children of the current element.

{signature}
{example}{code:csharp|title=C#}

          Element[] eArray = e.Children;
        
{code}
{code:vbnet|title=vb.net
}

          Dim eArray As Element() = e.Children
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a collection of [Element|Element] objects that represents all the direct children of the current element.{excerpt}
{signature:C#}
 public Element[] Children{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Children() As Element()
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle