PreservedInline Class
Represents an Inline element that is loaded from a file and is not directly supported by GemBox.Document API.
public sealed class PreservedInline : Inline
Public NotInheritable Class PreservedInline
Inherits Inline
- Inheritance:
- System.ObjectPreservedInline
Remarks
This element can appear in document content only if file is loaded with the PreserveUnsupportedFeatures property set to true.
For more information, see preservation article and preservation example.
Properties
ElementType
Gets the ElementType of this Element instance.
public override ElementType ElementType { get; }
Public Overrides ReadOnly Property ElementType As ElementType
Property Value
The ElementType of this Element instance.
Overrides
Methods
Clone()
Clones this PreservedInline instance.
Returns
Cloned PreservedInline.
Remarks
Document content element instance can exist only in a one place in the document.
If you want to insert document content element into some other part of the same document, then clone the element and insert its clone.
If you want to insert document content element into another document, then you should first import it into another document with Import<T>(T, Boolean, Boolean) method and then insert the imported element.
For more information, see cloning example.
ToString()
Returns a string that represents the current object.
Returns
- System.String
A string that represents the current object.
Overrides
Inherited Properties
Content | Gets the content of the current Element. (Inherited from Element) |
Document | Gets the owner document. (Inherited from Element) |
Parent | Gets the parent of this Element instance. (Inherited from Element) |
ParentCollection | Gets the InlineCollection that contains this Inline instance. (Inherited from Inline) |
Revision | Gets or sets the revision information for the inline. (Inherited from Inline) |
Inherited Methods
Clone(System.Boolean) | Clones this Inline instance. (Inherited from Inline) |
GetChildElements(System.Boolean) | Gets the child elements. (Inherited from Element) |
GetChildElements(System.Boolean, ElementType[]) | Gets the child elements filtered by ElementType. (Inherited from Element) |
GetParentElements() | Gets the parent elements. (Inherited from Element) |
GetParentElements(ElementType[]) | Gets the parent elements. (Inherited from Element) |