CGPDFDictionary Class

Definition

Represents a PDF Dictionary.

public class CGPDFDictionary : ObjCRuntime.INativeObject
type CGPDFDictionary = class
    interface INativeObject
Inheritance
CGPDFDictionary
Implements

Remarks

Dictionaries are used extensively in the PDF file format. Instances of this class represent dictionaries in your documents and the methods in this class can be used to look up the values in the dictionary or iterate over all of the elements of it.

Constructors

CGPDFDictionary(IntPtr)

A constructor used when creating managed representations of unmanaged objects.

Properties

Count

The number of items on this dictionary.

Handle

Handle (pointer) to the unmanaged object representation.

Methods

Apply(Action<String,CGPDFObject>)
Apply(CGPDFDictionary+ApplyCallback, Object)
GetArray(String, CGPDFArray)

Looks up an array value by name on the dictionary.

GetBoolean(String, Boolean)

Looks up a boolean value by name on the dictionary.

GetDictionary(String, CGPDFDictionary)

Looks up a dictionary value by name on the dictionary.

GetFloat(String, nfloat)

Looks up a float value by name on the dictionary.

GetInt(String, nint)

Looks up an integer value by name on the dictionary.

GetName(String, String)

Looks up a name in the dictionary.

GetStream(String, CGPDFStream)

Looks up a CGPDFStream in the dictionary.

GetString(String, String)

Looks up a string in the dictionary.

Applies to