PDFsharp-net6

PdfUIntegerObject

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 PdfUIntegerObject : PdfNumberObject, System.ICloneable

Inheritance ObjectPdfItemPdfObjectPdfNumberObjectPdfUIntegerObject
Implements ICloneable

Properties

Value

Gets the value as unsigned integer.

public uint Value { get; }

Property Value

UInt32

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

PdfUIntegerObject()

Initializes a new instance of the PdfUIntegerObject class.

public PdfUIntegerObject()

PdfUIntegerObject(UInt32)

Initializes a new instance of the PdfUIntegerObject class.

public PdfUIntegerObject(uint value)

Parameters

value UInt32
The value.

PdfUIntegerObject(PdfDocument, UInt32)

Initializes a new instance of the PdfUIntegerObject class.

public PdfUIntegerObject(PdfDocument document, uint value)

Parameters

document PdfDocument
The document.

value UInt32
The value.

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