Class DocumentElementBase
Provides base class for flow document elements.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.Model
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public abstract class DocumentElementBase
Properties
Document
Gets the document to which this document element is associated.
Declaration
public virtual RadFlowDocument Document { get; }
Property Value
RadFlowDocument
The document. |
Parent
Gets the parent of the element.
Declaration
public DocumentElementBase Parent { get; }
Property Value
DocumentElementBase
The parent. |
Methods
EnumerateChildrenOfType<T>()
Enumerates all child elements of given type.
Declaration
public IEnumerable<T> EnumerateChildrenOfType<T>()
where T : DocumentElementBase
Returns
System.Collections.Generic.IEnumerable<T>
|
Type Parameters
T
The type. |
OnChildAdded(DocumentElementBase)
Called when child element is added.
Declaration
protected virtual void OnChildAdded(DocumentElementBase child)
Parameters
DocumentElementBase
child
The child element. |
OnChildRemoved(DocumentElementBase)
Called when child element is removed.
Declaration
protected virtual void OnChildRemoved(DocumentElementBase child)
Parameters
DocumentElementBase
child
The child element. |