Interface IEntity
Represents an entity
Namespace: Syncfusion.DocIO.DLS
Assembly: Syncfusion.DocIO.NET.dll
Syntax
public interface IEntity
Properties
Document
Gets the WordDocument of this entity.
Declaration
WordDocument Document { get; }
Property Value
Type |
---|
WordDocument |
EntityType
Gets the type of the entity.
Declaration
EntityType EntityType { get; }
Property Value
Type | Description |
---|---|
EntityType | The EntityType of the current item. |
IsComposite
Gets a value indicating whether this instance is composite.
Declaration
bool IsComposite { get; }
Property Value
Type | Description |
---|---|
System.Boolean | True if this instance is composite, otherwise |
NextSibling
Gets the next sibling of the entity.
Declaration
IEntity NextSibling { get; }
Property Value
Owner
Gets the owner of the entity.
Declaration
Entity Owner { get; }
Property Value
PreviousSibling
Gets the previous sibling of the entity.
Declaration
IEntity PreviousSibling { get; }
Property Value
Methods
Clone()
Creates a duplicate of the entity.
Declaration
Entity Clone()