PDFsharp-net6

PdfIntegerObject

Namespace: PdfSharp.Pdf

Represents an indirect integer value. This type is not used by PDFsharp. If it is imported from an external PDF file, the value is converted into a direct object.

public sealed class PdfIntegerObject : PdfNumberObject, System.ICloneable

Inheritance ObjectPdfItemPdfObjectPdfNumberObjectPdfIntegerObject
Implements ICloneable

Properties

Value

Gets the value as integer.

public int Value { get; }

Property Value

Int32

Owner

Gets the PdfDocument this object belongs to.

public PdfDocument Owner { get; }

Property Value

PdfDocument

IsIndirect

Indicates whether the object is an indirect object.

public bool IsIndirect { get; }

Property Value

Boolean

Internals

Gets the PdfInternals object of this document, that grants access to some internal structures which are not part of the public interface of PdfDocument.

public PdfObjectInternals Internals { get; }

Property Value

PdfObjectInternals

Reference

Gets the indirect reference of this object. If the value is null, this object is a direct object.

public PdfReference Reference { get; internal set; }

Property Value

PdfReference

ReferenceNotNull

Gets the indirect reference of this object. Throws if it is null.

public PdfReference ReferenceNotNull { get; }

Property Value

PdfReference

Exceptions

InvalidOperationException
The indirect reference must be not null here.

Constructors

PdfIntegerObject()

Initializes a new instance of the PdfIntegerObject class.

public PdfIntegerObject()

PdfIntegerObject(Int32)

Initializes a new instance of the PdfIntegerObject class.

public PdfIntegerObject(int value)

Parameters

value Int32

PdfIntegerObject(PdfDocument, Int32)

Initializes a new instance of the PdfIntegerObject class.

public PdfIntegerObject(PdfDocument document, int value)

Parameters

document PdfDocument

value Int32

Methods

ToString()

Returns the integer as string.

public string ToString()

Returns

String

WriteObject(PdfWriter)

Writes the integer literal.

internal void WriteObject(PdfWriter writer)

Parameters

writer PdfWriter