Get all children of this C1TextElement.

Namespace:  C1.Phone.RichTextBox.Documents
Assembly:  C1.Phone.RichTextBox (in C1.Phone.RichTextBox.dll)

Syntax

C#
public Collection<C1TextElement> Children { get; }
Visual Basic
Public ReadOnly Property Children As Collection(Of C1TextElement)
	Get

Remarks

This collection can be used to easily manipulate the document tree without knowing the type of this C1TextElement. Note that this allows you to create invalid documents, you can use IsValidChild(Type) to know if a type is a valid child of this C1TextElement.

See Also