Vanilla.PDF
2.0.0
Cross-platform toolkit for creating and modifying PDF documents
|
Iterator concept allowing to traverse over DeveloperExtensionsHandle collection. More...
error_type CALLING_CONVENTION | DeveloperExtensionsIterator_GetKey (DeveloperExtensionsIteratorHandle *handle, NameObjectHandle **result) |
Get key at iterator position. | |
error_type CALLING_CONVENTION | DeveloperExtensionsIterator_GetValue (DeveloperExtensionsIteratorHandle *handle, DeveloperExtensionHandle **result) |
Get value at iterator position. | |
error_type CALLING_CONVENTION | DeveloperExtensionsIterator_IsValid (DeveloperExtensionsIteratorHandle *handle, boolean_type *result) |
Determine if current position is valid. | |
error_type CALLING_CONVENTION | DeveloperExtensionsIterator_Next (DeveloperExtensionsIteratorHandle *handle) |
Advances iterator to the next position. | |
error_type CALLING_CONVENTION | DeveloperExtensionsIterator_Release (DeveloperExtensionsIteratorHandle *handle) |
Decrement the internal reference counter. | |
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. | |
Iterator concept allowing to traverse over DeveloperExtensionsHandle collection.
error_type CALLING_CONVENTION DeveloperExtensionsIterator_GetKey | ( | DeveloperExtensionsIteratorHandle * | handle, |
NameObjectHandle ** | result ) |
Get key at iterator position.
Ensure the iterator is valid.
|
related |
Get value at iterator position.
Ensure the iterator is valid.
|
related |
Determine if current position is valid.
Invalid position may mean that iterator moved past the end of the collection, as well as the collection was modified.
Any other operation except THIS will fail on invalid iterator.
|
related |
Advances iterator to the next position.
Ensure the iterator is valid.
|
related |
Decrement the internal reference counter.
When the internal counter reaches zero the object is deleted. Releasing already disposed object causes undefined behavior.