Interface IContentRootElement
Represents the base interface for the root of the content elements tree.
Namespace: Telerik.Windows.Documents.Fixed.Model.Common
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public interface IContentRootElement : IContainerElement, IFixedDocumentElement
Properties
Annotations
Gets the collection of annotations associated with this content root element. This collection provides access to all interactive annotations such as links, comments, and form fields.
Declaration
AnnotationCollection Annotations { get; }
Property Value
AnnotationCollection
The collection of annotations for this element. |
DefaultStructureRoot
Gets the default structure root element of the structure. This is the root element that is used when auto-tagging is enabled.
Declaration
StructureElement DefaultStructureRoot { get; }
Property Value
StructureElement
The default structure root. |
Size
Gets the size dimensions of the content root element. This defines the available space for content within the root element.
Declaration
Size Size { get; }
Property Value
System.Windows.Size
The size dimensions of the element. |
StructureStack
Gets the stack of structure elements used to manage hierarchical processing when auto-tagging is enabled.
Declaration
Stack<StructureElement> StructureStack { get; }
Property Value
System.Collections.Generic.Stack<StructureElement>
The structure stack. |
SupportsAnnotations
Gets a value indicating whether the element supports annotation functionality. When true, annotations can be added to this element through the Annotations collection.
Declaration
bool SupportsAnnotations { get; }
Property Value
System.Boolean
True if the element supports annotations; otherwise, false. |
SupportsAutoTagging
Gets a value indicating whether the element supports automatic tagging functionality.
Declaration
bool SupportsAutoTagging { get; }
Property Value
System.Boolean
True if the element supports auto tagging. |