[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.Spec.PdfName

PdfName Class

Represents a PDF Name object. Technically a PDF name is an immutable array of bytes. This class overrides and implements:

Inheritance
PdfName
Namespace: GrapeCity.Documents.Pdf.Spec
Assembly: DS.Documents.Pdf.dll
Syntax
public class PdfName : IPdfName, IReadOnlyList<byte>, IReadOnlyCollection<byte>, IEnumerable<byte>, IEnumerable, IEquatable<PdfName>
Public Class PdfName
    Implements IPdfName, IReadOnlyList(Of Byte), IReadOnlyCollection(Of Byte), IEnumerable(Of Byte), IEnumerable, IEquatable(Of PdfName)

Constructors

Name Description
PdfName(byte[])

Initializes a new instance of the PdfName class.

PdfName(byte[], int, int)

Initializes a new instance of the PdfName class.

PdfName(string)

Initializes a new instance of the PdfName class.

Fields

Name Description
s_EmptyPdfNameArray

Gets the empty array of PdfName objects.

Properties

Name Description
Count

Gets the number of elements contained in the PdfString.

this[int]

Gets or sets the byte at the specified index.

Methods

Name Description
AreAllPdfNamesUnique(IList<PdfName>)

Checks whether all PdfName objects are unique.

Contains(byte)

Determines whether a byte is in the PdfString.

CopyTo(byte[], int)

Copies the entire PdfString to a compatible one-dimensional array, starting at the specified index of the target array.

Equals(PdfName)

Checks whether this PdfName equals to value.

Equals(object)
GetHashCode()
GetOrCreate(byte[])

Creates a new PdfName or returns existing predefined Standard Name.

GetOrCreate(byte[], int)

Creates a new PdfName or returns existing predefined Standard Name.

GetOrCreate(string)

Creates a new PdfName or returns existing predefined Standard Name.

IsNullOrEmpty(PdfName)

Returns true if value is null or empty (zero length).

IsValidChar(byte)

Checks whether the specified byte is valid and can be written to the PDF stream without '#' prefix.

ToString()

Operators

Name Description
operator ==(PdfName, PdfName)

The equality operator.

operator !=(PdfName, PdfName)

The inequality operator.

Extension Methods