Foxit PDF SDK
|
Instance Methods | |
(FSPDFObject *) | - getElement: |
Get the value element of an entry with specified key. More... | |
(NSString *) | - getKey: |
Get the key of an entry specified by position. More... | |
(FSPDFObject *) | - getValue: |
Get the value element of an entry specified by position. More... | |
(BOOL) | - hasKey: |
Check whether there is an entry with specified key in current dictionary or not. More... | |
(long) | - moveNext: |
Move to the position of first or the next entry. More... | |
(void) | - removeAt: |
Remove an entry specified by key. More... | |
(void) | - setAt:pdf_object: |
Set a PDF object as value element to an entry specified by key. More... | |
(void) | - setAtBoolean:value: |
Set boolean element an entry specified by key. More... | |
(void) | - setAtDateTime:value: |
Set a Datetime object as value element to an entry specified by key. More... | |
(void) | - setAtFloat:value: |
Set a float element to an entry specified by key. More... | |
(void) | - setAtInteger:value: |
Set a integer element to an entry specified by key. More... | |
(void) | - setAtMatrix:value: |
Set a matrix object as value element to an entry specified by key. More... | |
(void) | - setAtName:value: |
Set a string (as PDF name object) as value element to an entry specified by key. More... | |
(void) | - setAtRect:value: |
Set a rectangle object as value element to an entry specified by key. More... | |
(void) | - setAtString:value: |
Set a string as value element to an entry specified by key. More... | |
![]() | |
(FSPDFObject *) | - cloneObject |
Clone current PDF object and get the cloned PDF object. More... | |
(FSPDFArray *) | - getArray |
Get the PDF array object of current PDF object. More... | |
(BOOL) | - getBoolean |
Get the boolean value of current PDF object. More... | |
(FSDateTime *) | - getDateTime |
Get the date time value of current PDF object. More... | |
(FSPDFDictionary *) | - getDict |
Get the PDF dictionary object of current PDF object. More... | |
(FSPDFObject *) | - getDirectObject |
Get the direct object of current PDF object. More... | |
(float) | - getFloat |
Get the float value of current PDF object. More... | |
(int) | - getInteger |
Get the integer value of current PDF object. More... | |
(FSMatrix2D *) | - getMatrix |
Get the matrix value of current PDF object. More... | |
(NSString *) | - getName |
Get the name value of current PDF object. More... | |
(unsigned int) | - getObjNum |
Get the indirect object number of current PDF object. More... | |
(FSRectF *) | - getRect |
Get the rectangle value of current PDF object. More... | |
(FSPDFStream *) | - getStream |
Get the PDF stream object of current PDF object. More... | |
(NSString *) | - getString |
Get the string value of current PDF object. More... | |
(FSPDFObjectType) | - getType |
Get the type of current PDF object. More... | |
(NSString *) | - getWideString |
Get the wide string value of current PDF object. More... | |
Class Methods | |
(FSPDFDictionary *) | + create |
Create a new dictionary object. More... | |
![]() | |
(FSPDFObject *) | + createFromBoolean: |
Create a PDF object from a boolean value. More... | |
(FSPDFObject *) | + createFromDateTime: |
Create a PDF object from date time. More... | |
(FSPDFObject *) | + createFromFloat: |
Create a PDF object from a float number. More... | |
(FSPDFObject *) | + createFromInteger: |
Create a PDF object from a integer number. More... | |
(FSPDFObject *) | + createFromName: |
Create a PDF object from a string which represents a name. More... | |
(FSPDFObject *) | + createFromString: |
Create a PDF object from string. More... | |
(FSPDFObject *) | + createReference:object_number: |
Create a reference for an indirect object. More... | |
A PDF dictionary object is an associative table containing pairs of objects, known as entries of the dictionary. The first element of each entry is the key, and it must be a PDF name object. The second element is the value, and it can be any kind of PDF object, including another dictionary. In the same dictionary, no two entries should have the same key. For more details, please refer to Section 3.2.6 "Dictionary Objects" in <PDF Reference 1.7>.
Class FSPDFDictionary is derived from FSPDFObject and offers functions to create a new PDF dictionary object and get/set entries in a PDF dictionary object.
+ (FSPDFDictionary *) create |
Create a new dictionary object.
- (FSPDFObject *) getElement: | (NSString *) | key |
Get the value element of an entry with specified key.
[in] | key | The key of the entry. It should not be an empty string. |
- (NSString *) getKey: | (long) | position |
Get the key of an entry specified by position.
[in] | position | A POSITION that specifies the position of the entry. It should not be nil or 0. |
- (FSPDFObject *) getValue: | (long) | position |
Get the value element of an entry specified by position.
[in] | position | A POSITION that specifies the position of the entry. It should not be nil or 0. |
- (BOOL) hasKey: | (NSString *) | key |
Check whether there is an entry with specified key in current dictionary or not.
[in] | key | The key to be checked. It should not be an empty string. |
- (long) moveNext: | (long) | position |
Move to the position of first or the next entry.
[in] | position | A POSITION that indicates the position of current entry in the dictionary. If this is nil or 0, the position of first entry in the dictionary will be returned. |
- (void) removeAt: | (NSString *) | key |
Remove an entry specified by key.
[in] | key | The key of the entry to be removed. It should not be an empty string. |
- (void) setAt: | (NSString *) | key | |
pdf_object: | (FSPDFObject*) | pdf_object | |
Set a PDF object as value element to an entry specified by key.
[in] | key | The key of the entry, whose value element will be set. It should not be an empty string. |
[in] | pdf_object | A FSPDFObject object which will be set to the entry. It should not be nil. |
- (void) setAtBoolean: | (NSString *) | key | |
value: | (BOOL) | value | |
Set boolean element an entry specified by key.
[in] | key | The key of the entry, whose value element will be set. It should not be an empty string. |
[in] | value | A boolean element which will be set to the entry. |
- (void) setAtDateTime: | (NSString *) | key | |
value: | (FSDateTime*) | value | |
Set a Datetime object as value element to an entry specified by key.
[in] | key | The key of the entry, whose value element will be set. It should not be an empty string. |
[in] | value | The date time information which will be set to the entry. |
- (void) setAtFloat: | (NSString *) | key | |
value: | (float) | value | |
Set a float element to an entry specified by key.
[in] | key | The key of the entry, whose value element will be set. It should not be an empty string. |
[in] | value | A float value which will be set to the entry. |
- (void) setAtInteger: | (NSString *) | key | |
value: | (int) | value | |
Set a integer element to an entry specified by key.
[in] | key | The key of the entry, whose value element will be set. It should not be an empty string. |
[in] | value | An integer value which will be set to the entry. |
- (void) setAtMatrix: | (NSString *) | key | |
value: | (FSMatrix2D*) | value | |
Set a matrix object as value element to an entry specified by key.
[in] | key | The key of the entry, whose value element will be set. It should not be an empty string. |
[in] | value | A matrix which will be set to the entry. |
- (void) setAtName: | (NSString *) | key | |
value: | (NSString *) | value | |
Set a string (as PDF name object) as value element to an entry specified by key.
[in] | key | The key of the entry, whose value element will be set. It should not be an empty string. |
[in] | value | A string which will be set as PDF name object to the entry. It should not be an empty string. |
- (void) setAtRect: | (NSString *) | key | |
value: | (FSRectF*) | value | |
Set a rectangle object as value element to an entry specified by key.
[in] | key | The key of the entry, whose value element will be set. It should not be an empty string. |
[in] | value | A rectangle which will be set to the entry. |
- (void) setAtString: | (NSString *) | key | |
value: | (NSString *) | value | |
Set a string as value element to an entry specified by key.
[in] | key | The key of the entry, whose value element will be set. It should not be an empty string. |
[in] | value | A wide string which will be set as PDF string object to the entry. |