Class StructureElement
Represents a structure element in the document.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class StructureElement : StructureTree
Properties
ActualText
Gets or sets the actual text of the structure element.
Declaration
public string ActualText { get; set; }
Property Value
System.String
|
AlternateDescription
Gets or sets the alternate description of the structure element.
Declaration
public string AlternateDescription { get; set; }
Property Value
System.String
|
CustomStructureType
Gets the custom type of the structure element.
Declaration
public string CustomStructureType { get; }
Property Value
System.String
|
ID
Gets or sets the unique identifier for the entity.
Declaration
public string ID { get; set; }
Property Value
System.String
|
Language
Gets or sets the language of the structure element.
Declaration
public string Language { get; set; }
Property Value
System.String
|
Parent
Gets or sets the parent structure tree of the structure element.
Declaration
public StructureTree Parent { get; }
Property Value
StructureTree
|
StandardStructureType
Gets the type of the structure element.
Declaration
public StructureTagType StandardStructureType { get; }
Property Value
StructureTagType
|
TaggedElements
Gets a read-only collection of structural elements that have been tagged with this structure element.
Declaration
public IReadOnlyCollection<IStructuralElement> TaggedElements { get; }
Property Value
System.Collections.Generic.IReadOnlyCollection<IStructuralElement>
|