PDFsharp-net6

PdfRealObject

Namespace: PdfSharp.Pdf

Represents an indirect real 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 PdfRealObject : PdfNumberObject, System.ICloneable

Inheritance ObjectPdfItemPdfObjectPdfNumberObjectPdfRealObject
Implements ICloneable

Properties

Value

Gets or sets the value.

public double Value { get; set; }

Property Value

Double

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

PdfRealObject()

Initializes a new instance of the PdfRealObject class.

public PdfRealObject()

PdfRealObject(Double)

Initializes a new instance of the PdfRealObject class.

public PdfRealObject(double value)

Parameters

value Double
The value.

PdfRealObject(PdfDocument, Double)

Initializes a new instance of the PdfRealObject class.

public PdfRealObject(PdfDocument document, double value)

Parameters

document PdfDocument
The document.

value Double
The value.

Methods

ToString()

Returns the real as a culture invariant string.

public string ToString()

Returns

String

WriteObject(PdfWriter)

Writes the real literal.

internal void WriteObject(PdfWriter writer)

Parameters

writer PdfWriter