Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Recognition.Structure Namespace / Element Class / Children Property

In This Topic
    Children Property (Element)
    In This Topic
    Gets the list of current element's child elements.

    Note that even if the current element has no children, accessing this property initializes the list. To simply check whether the element has any children, use HasChildren.

    Syntax
    'Declaration
     
    Public ReadOnly Property Children As System.Collections.Generic.IReadOnlyList(Of Element)
    public System.Collections.Generic.IReadOnlyList<Element> Children {get;}
    See Also