PdfDictionaryEntry Struct
Represents a PdfDictionary entry.
Constructors
PdfDictionaryEntry(PdfName, PdfBasicObject)
Initializes a new instance of the PdfDictionaryEntry structure with the specified key and value.
public PdfDictionaryEntry(PdfName key, PdfBasicObject value)
Public Sub New(key As PdfName, value As PdfBasicObject)
Parameters
key
- PdfName
The PdfName defined in each PdfDictionaryEntry.
value
- PdfBasicObject
The PdfBasicObject associated with key
.
PdfDictionaryEntry(String, PdfBasicObject)
Initializes a new instance of the PdfDictionaryEntry structure with the specified System.String key and PdfBasicObject value.
public PdfDictionaryEntry(string key, PdfBasicObject value)
Public Sub New(key As String, value As PdfBasicObject)
Parameters
key
- System.String
The System.String from which Key is created by using Create(String) method.
value
- PdfBasicObject
The PdfBasicObject associated with key
.
Exceptions
- System.ArgumentNullException
key
is null.
Properties
Key
Gets the PdfName key in the PdfDictionaryEntry.
Property Value
The PdfName key in the PdfDictionaryEntry.
Value
Gets the PdfBasicObject value in the PdfDictionaryEntry.
public readonly PdfBasicObject Value { get; }
Public ReadOnly Property Value As PdfBasicObject
Property Value
The PdfBasicObject value in the PdfDictionaryEntry.
Methods
ToString()
Returns a System.String that represents this PdfDictionaryEntry instance.
Returns
- System.String
A System.String that represents this PdfDictionaryEntry instance.
Overrides
Remarks
This method should be used primarily for debugging purposes and should be considered volatile (format of its return value might change in future versions).