PDFsharp-net6

PdfNullObject

Namespace: PdfSharp.Pdf

Represents an indirect null value. This type is not used by PDFsharp, but at least one tool from Adobe creates PDF files with a null object.

public sealed class PdfNullObject : PdfObject, System.ICloneable

Inheritance ObjectPdfItemPdfObjectPdfNullObject
Implements ICloneable

Properties

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

PdfNullObject()

Initializes a new instance of the PdfNullObject class.

public PdfNullObject()

PdfNullObject(PdfDocument)

Initializes a new instance of the PdfNullObject class.

public PdfNullObject(PdfDocument document)

Parameters

document PdfDocument
The document.

Methods

ToString()

Returns the string “null”.

public string ToString()

Returns

String

WriteObject(PdfWriter)

Writes the keyword «null».

internal void WriteObject(PdfWriter writer)

Parameters

writer PdfWriter