LayOut C API
|
Go to the source code of this file.
Functions | |
LO_RESULT | LOAutoTextDefinitionListCreate (LOAutoTextDefinitionListRef *auto_text_list) |
Creates a new empty auto text definition list object. More... | |
LO_RESULT | LOAutoTextDefinitionListRelease (LOAutoTextDefinitionListRef *auto_text_list) |
Releases an auto text definition list object. *auto_text_list will be set to invalid by this function. More... | |
LO_RESULT | LOAutoTextDefinitionListGetNumberOfAutoTextDefinitions (LOAutoTextDefinitionListRef auto_text_list, size_t *num_auto_texts) |
Gets the number of auto text definitions in this list. More... | |
LO_RESULT | LOAutoTextDefinitionListGetAutoTextDefinitionAtIndex (LOAutoTextDefinitionListRef auto_text_list, size_t index, LOAutoTextDefinitionRef *auto_text) |
Gets the auto text definition at the specified index. More... | |
LO_RESULT LOAutoTextDefinitionListCreate | ( | LOAutoTextDefinitionListRef * | auto_text_list | ) |
Creates a new empty auto text definition list object.
[out] | auto_text_list | An empty auto text definition list object. |
LO_RESULT LOAutoTextDefinitionListGetAutoTextDefinitionAtIndex | ( | LOAutoTextDefinitionListRef | auto_text_list, |
size_t | index, | ||
LOAutoTextDefinitionRef * | auto_text | ||
) |
Gets the auto text definition at the specified index.
[in] | auto_text_list | The auto text definition list object. |
[in] | index | The index of the auto text definition to get. |
[out] | auto_text | The auto text definition object at index in the list. |
LO_RESULT LOAutoTextDefinitionListGetNumberOfAutoTextDefinitions | ( | LOAutoTextDefinitionListRef | auto_text_list, |
size_t * | num_auto_texts | ||
) |
Gets the number of auto text definitions in this list.
[in] | auto_text_list | The auto text definition list object. |
[out] | num_auto_texts | The number of auto text definition objects in the list. |
LO_RESULT LOAutoTextDefinitionListRelease | ( | LOAutoTextDefinitionListRef * | auto_text_list | ) |
Releases an auto text definition list object. *auto_text_list will be set to invalid by this function.
[in] | auto_text_list | The auto text definition list object. |