Class ChildDocumentContainer
Represents a container for child documents in the Telerik Windows Document Model.
Inheritance
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public abstract class ChildDocumentContainer : Object
Remarks
This class is used to manage collections of child documents, providing functionality to add, remove, and manipulate document elements.
Constructors
ChildDocumentContainer()
Declaration
protected ChildDocumentContainer()
Properties
Body
Gets the body of the child document container.
Declaration
public virtual RadDocument Body { get; set; }
Property Value
RadDocument
|
Remarks
The body contains the main content of the document, including paragraphs, tables, images, and other elements.
Methods
OnBodyChanged()
Declaration
protected virtual void OnBodyChanged()
OnBodyChanging()
Declaration
protected virtual void OnBodyChanging()
Events
BodyChanged
Declaration
public event EventHandler BodyChanged
Event Type
System.EventHandler
|
BodyChanging
Declaration
public event EventHandler BodyChanging
Event Type
System.EventHandler
|