Interface IPdfPrimitive
Defines the basic interace of the various Primitive..
Namespace: Syncfusion.Pdf.Primitives
Assembly: Syncfusion.Pdf.UWP.dll
Syntax
public interface IPdfPrimitive
Properties
ClonedObject
Stores the cloned object for future use.
Declaration
IPdfPrimitive ClonedObject { get; }
Property Value
Type |
---|
IPdfPrimitive |
IsSaving
Gets or sets a value indicating whether this document is saving or not.
Declaration
bool IsSaving { get; set; }
Property Value
Type |
---|
System.Boolean |
ObjectCollectionIndex
Gets or sets the integer value of the specified object.
Declaration
int ObjectCollectionIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Position
Gets or sets the position of the object.
Declaration
int Position { get; set; }
Property Value
Type |
---|
System.Int32 |
Status
Specfies the status of the IPdfPrmitive. Status is registered if it has a reference or else none.
Declaration
ObjectStatus Status { get; set; }
Property Value
Type |
---|
ObjectStatus |
Methods
Clone(PdfCrossTable)
Creates a deep copy of the IPdfPrimitive object.
Declaration
IPdfPrimitive Clone(PdfCrossTable crossTable)
Parameters
Type | Name | Description |
---|---|---|
PdfCrossTable | crossTable |
Returns
Type |
---|
IPdfPrimitive |
Save(IPdfWriter)
Saves the object using the specified writer.
Declaration
void Save(IPdfWriter writer)
Parameters
Type | Name | Description |
---|---|---|
IPdfWriter | writer | The writer. |