![]() |
Vanilla.PDF
2.2.0
Cross-platform toolkit for creating and modifying PDF documents
|
Base class for all destinations. More...
| error_type CALLING_CONVENTION | Destination_CreateFromArray (ArrayObjectHandle *array_handle, DestinationHandle **result) |
| Create a destination from an array object. | |
| error_type CALLING_CONVENTION | Destination_CreateFromDictionary (DictionaryObjectHandle *dict_handle, DestinationHandle **result) |
| Create a destination from a dictionary object. | |
| error_type CALLING_CONVENTION | Destination_GetDestinationType (DestinationHandle *handle, DestinationType *result) |
| Get the type of destination to determine available parameters. | |
| error_type CALLING_CONVENTION | Destination_GetPageNumber (DestinationHandle *handle, ObjectHandle **result) |
| The page of the document that shall be displayed. | |
Additional Inherited Members | |
Public Member Functions inherited from IUnknownHandle | |
| error_type CALLING_CONVENTION | IUnknown_AddRef (IUnknownHandle *handle) |
| Increment the internal reference counter. | |
Related Symbols inherited from IUnknownHandle | |
| error_type CALLING_CONVENTION | IUnknown_Release (IUnknownHandle *handle) |
| Decrement the internal reference counter. | |
Base class for all destinations.
| error_type CALLING_CONVENTION Destination_CreateFromArray | ( | ArrayObjectHandle * | array_handle, |
| DestinationHandle ** | result | ||
| ) |
Create a destination from an array object.
Array format: [page /Type ...] The array should contain at least the page reference and destination type.
| array_handle | Array object containing destination parameters |
| result | Pointer to receive the created destination handle |
|
related |
Create a destination from a dictionary object.
Dictionary format: {/D [page /Type ...]} The dictionary should contain a /D entry with the destination array.
| dict_handle | Dictionary object containing /D entry with destination parameters |
| result | Pointer to receive the created destination handle |
|
related |
The page of the document that shall be displayed.
The object type shall be either IntegerObjectHandle or IndirectReferenceObjectHandle.
IntegerObjectHandle means index in document's page tree.
IndirectReferenceObjectHandle means it is indirect reference to PageObjectHandle representing the destination page.