LayoutElement
GetChildEntities Method
|
Obtains a group of child entities that are of a specific type.
Namespace:
Spire.Doc.Pages
Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
Syntax
public LayoutCollection<LayoutElement> GetChildEntities(
LayoutElementType type,
bool isDeep
)
Public Function GetChildEntities (
type As LayoutElementType,
isDeep As Boolean
) As LayoutCollection(Of LayoutElement)
public:
LayoutCollection<LayoutElement^>^ GetChildEntities(
LayoutElementType type,
bool isDeep
)
member GetChildEntities :
type : LayoutElementType *
isDeep : bool -> LayoutCollection<LayoutElement>
Parameters
-
type
-
Type:
Spire.Doc.Pages
LayoutElementType
Specifies the type of entities to select.
-
isDeep
-
Type:
System
Boolean
True to select from all child entities recursively.
False to select only among immediate children
Return Value
Type:
LayoutCollection
LayoutElement
See Also