Vanilla.PDF  1.4.1
Cross-platform toolkit for creating and modifying PDF documents
List of all members
ArrayObjectHandle Class Reference

Represents array of mixed type elements. More...

Inheritance diagram for ArrayObjectHandle:
ObjectHandle IUnknownHandle
error_type ArrayObject_Create (ArrayObjectHandle **result)
 Creates a new ArrayObject instance.
 
error_type ArrayObject_GetSize (ArrayObjectHandle *handle, size_type *result)
 Return size of an array.
 
error_type ArrayObject_GetValue (ArrayObjectHandle *handle, size_type at, ObjectHandle **result)
 Get element at location at.
 
error_type ArrayObject_SetValue (ArrayObjectHandle *handle, size_type at, ObjectHandle *value)
 Set element at location at.
 
error_type ArrayObject_Append (ArrayObjectHandle *handle, ObjectHandle *value)
 Insert new element at the end of the array.
 
error_type ArrayObject_Insert (ArrayObjectHandle *handle, size_type at, ObjectHandle *value)
 Insert new element at location at.
 
error_type ArrayObject_Remove (ArrayObjectHandle *handle, size_type at)
 Remove element from location at.
 
error_type ArrayObject_Clear (ArrayObjectHandle *handle)
 Clear all items from the collection.
 
error_type ArrayObject_ToObject (ArrayObjectHandle *handle, ObjectHandle **result)
 Reinterpret current object as ObjectHandle.
 
error_type ArrayObject_FromObject (ObjectHandle *handle, ArrayObjectHandle **result)
 Convert ObjectHandle to ArrayObjectHandle.
 
error_type ArrayObject_Release (ArrayObjectHandle *handle)
 Decrement the internal reference counter. More...
 

Additional Inherited Members

- Public Member Functions inherited from ObjectHandle
error_type Object_GetType (ObjectHandle *handle, ObjectType *result)
 Get derived type of current object.
 
- Public Member Functions inherited from IUnknownHandle
error_type IUnknown_AddRef (IUnknownHandle *handle)
 Increment the internal reference counter.
 

Detailed Description

Represents array of mixed type elements.

Friends And Related Function Documentation

◆ ArrayObject_Release()

error_type ArrayObject_Release ( ArrayObjectHandle handle)
related

Decrement the internal reference counter.

When the internal counter reaches zero the object is deleted. Releasing already disposed object causes undefined behavior.

See also
IUnknown_Release

The documentation for this class was generated from the following file: