|
iDRS™ SDK 16
|
Interface for CDefaultPageCollection wrapper. More...
Go to the source code of this file.
Functions | |
| CDefaultPageCollection | CDefaultPageCollection_Create (const CIDRS argIDRS, IDRS_BOOL const bBlocking, idrs_exception *pargException) |
| Creates a new CDefaultPageCollection object. | |
| CDefaultPageCollection | CDefaultPageCollection_Create2 (const CIDRS argIDRS, idrs_exception *pargException) |
| Creates a new CDefaultPageCollection object. | |
| enum PageCollectionType | CDefaultPageCollection_GetType (const CDefaultPageCollection argCDefaultPageCollection, idrs_exception *pargException) |
| GetType returns the type of this collection, either default or custom. | |
| CPage | CDefaultPageCollection_GetAt (const CDefaultPageCollection argCDefaultPageCollection, IDRS_UINT const uiPageIndex, idrs_exception *pargException) |
| GetAt returns the page at the specified position. | |
| void | CDefaultPageCollection_SetAt (CDefaultPageCollection argCDefaultPageCollection, IDRS_UINT const uiPageIndex, const CPage argPage, idrs_exception *pargException) |
| Sets the page at the specified position. | |
| void | CDefaultPageCollection_AddTail (CDefaultPageCollection argCDefaultPageCollection, const CPage argPage, idrs_exception *pargException) |
| Adds the specified page after the one stored with the highest index in the collection. | |
| void | CDefaultPageCollection_SetPageProcessed (CDefaultPageCollection argCDefaultPageCollection, IDRS_UINT const uiPageIndex, IDRS_BOOL const bValue, idrs_exception *pargException) |
| Sets the flag that indicates whether the page at specified index has been processed by CDocumentWriter. | |
| void | CDefaultPageCollection_SetPageProcessed2 (CDefaultPageCollection argCDefaultPageCollection, IDRS_UINT const uiPageIndex, idrs_exception *pargException) |
| Sets the flag that indicates whether the page at specified index has been processed by CDocumentWriter. | |
| IDRS_BOOL | CDefaultPageCollection_GetPageProcessed (const CDefaultPageCollection argCDefaultPageCollection, IDRS_UINT const uiPageIndex, idrs_exception *pargException) |
| Reads the flag that indicates whether the page at specified index has been processed by CDocumentWriter. | |
| void | CDefaultPageCollection_SetStorageOptions (CDefaultPageCollection argCDefaultPageCollection, const CPageCollectionStorageOptions argStorageOptions, idrs_exception *pargException) |
| Sets the storage options. | |
| CPageCollectionStorageOptions | CDefaultPageCollection_GetStorageOptions (const CDefaultPageCollection argCDefaultPageCollection, idrs_exception *pargException) |
| Gets the storage options. | |
| void | CDefaultPageCollection_SetReadyToClose (CDefaultPageCollection argCDefaultPageCollection, IDRS_BOOL const bValue, idrs_exception *pargException) |
| Sets the flag that indicates whether the document's full set of pages is ready for the DocumentWriter. | |
| IDRS_BOOL | CDefaultPageCollection_GetReadyToClose (const CDefaultPageCollection argCDefaultPageCollection, idrs_exception *pargException) |
| Gets the flag that indicates whether the document's full set of pages is ready for the DocumentWriter. | |
| void | CDefaultPageCollection_Destroy (CDefaultPageCollection argCDefaultPageCollection, idrs_exception *pargException) |
| Destroys a CDefaultPageCollection handle. | |
Interface for CDefaultPageCollection wrapper.
| void CDefaultPageCollection_AddTail | ( | CDefaultPageCollection | argCDefaultPageCollection, |
| const CPage | argPage, | ||
| idrs_exception * | pargException | ||
| ) |
Adds the specified page after the one stored with the highest index in the collection.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| argPage | The page object to insert |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| CDefaultPageCollection CDefaultPageCollection_Create | ( | const CIDRS | argIDRS, |
| IDRS_BOOL const | bBlocking, | ||
| idrs_exception * | pargException | ||
| ) |
Creates a new CDefaultPageCollection object.
| argIDRS | The CIDRS instance |
| bBlocking | If set to 'IDRS_TRUE', enables the blocking mode. Set to 'IDRS_FALSE' by default. |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| CDefaultPageCollection CDefaultPageCollection_Create2 | ( | const CIDRS | argIDRS, |
| idrs_exception * | pargException | ||
| ) |
Creates a new CDefaultPageCollection object.
| argIDRS | The CIDRS instance |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CDefaultPageCollection_Destroy | ( | CDefaultPageCollection | argCDefaultPageCollection, |
| idrs_exception * | pargException | ||
| ) |
Destroys a CDefaultPageCollection handle.
| argCDefaultPageCollection | CDefaultPageCollection handle to destroy |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| CPage CDefaultPageCollection_GetAt | ( | const CDefaultPageCollection | argCDefaultPageCollection, |
| IDRS_UINT const | uiPageIndex, | ||
| idrs_exception * | pargException | ||
| ) |
GetAt returns the page at the specified position.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| uiPageIndex | The index of the page to retrieve |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| IDRS_BOOL CDefaultPageCollection_GetPageProcessed | ( | const CDefaultPageCollection | argCDefaultPageCollection, |
| IDRS_UINT const | uiPageIndex, | ||
| idrs_exception * | pargException | ||
| ) |
Reads the flag that indicates whether the page at specified index has been processed by CDocumentWriter.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| uiPageIndex | The index of the page |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| IDRS_BOOL CDefaultPageCollection_GetReadyToClose | ( | const CDefaultPageCollection | argCDefaultPageCollection, |
| idrs_exception * | pargException | ||
| ) |
Gets the flag that indicates whether the document's full set of pages is ready for the DocumentWriter.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| CPageCollectionStorageOptions CDefaultPageCollection_GetStorageOptions | ( | const CDefaultPageCollection | argCDefaultPageCollection, |
| idrs_exception * | pargException | ||
| ) |
Gets the storage options.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| enum PageCollectionType CDefaultPageCollection_GetType | ( | const CDefaultPageCollection | argCDefaultPageCollection, |
| idrs_exception * | pargException | ||
| ) |
GetType returns the type of this collection, either default or custom.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CDefaultPageCollection_SetAt | ( | CDefaultPageCollection | argCDefaultPageCollection, |
| IDRS_UINT const | uiPageIndex, | ||
| const CPage | argPage, | ||
| idrs_exception * | pargException | ||
| ) |
Sets the page at the specified position.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| uiPageIndex | The index of the page |
| argPage | The page object |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CDefaultPageCollection_SetPageProcessed | ( | CDefaultPageCollection | argCDefaultPageCollection, |
| IDRS_UINT const | uiPageIndex, | ||
| IDRS_BOOL const | bValue, | ||
| idrs_exception * | pargException | ||
| ) |
Sets the flag that indicates whether the page at specified index has been processed by CDocumentWriter.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| uiPageIndex | The index of the page |
| bValue | The boolean flag value. |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CDefaultPageCollection_SetPageProcessed2 | ( | CDefaultPageCollection | argCDefaultPageCollection, |
| IDRS_UINT const | uiPageIndex, | ||
| idrs_exception * | pargException | ||
| ) |
Sets the flag that indicates whether the page at specified index has been processed by CDocumentWriter.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| uiPageIndex | The index of the page |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CDefaultPageCollection_SetReadyToClose | ( | CDefaultPageCollection | argCDefaultPageCollection, |
| IDRS_BOOL const | bValue, | ||
| idrs_exception * | pargException | ||
| ) |
Sets the flag that indicates whether the document's full set of pages is ready for the DocumentWriter.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| bValue | The flag value |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CDefaultPageCollection_SetStorageOptions | ( | CDefaultPageCollection | argCDefaultPageCollection, |
| const CPageCollectionStorageOptions | argStorageOptions, | ||
| idrs_exception * | pargException | ||
| ) |
Sets the storage options.
| argCDefaultPageCollection | CDefaultPageCollection handle |
| argStorageOptions | The storage options |
| pargException | Pointer to exception structure that will be filled if an exception occurs |