|
iDRS™ SDK 16
|
Interface for CFormField wrapper. More...
Go to the source code of this file.
Functions | |
| CFormField | CFormField_Create (enum FormFieldType const argFormFieldType, idrs_exception *pargException) |
| Creates a new Form Field element of the given type. | |
| CFormField | CFormField_Create2 (enum FormFieldType const argFormFieldType, const IDRS_RECT *argBoundingBox, idrs_exception *pargException) |
| Creates a new Form Field element of the given type with the given bounding box. | |
| enum FormFieldType | CFormField_GetFormFieldType (const CFormField argCFormField, idrs_exception *pargException) |
| GetFormFieldType returns the form field type. | |
| CFormField | CFormField_GetParent (const CFormField argCFormField, idrs_exception *pargException) |
| Get the parent group. | |
| const idrs_string | CFormField_GetName (const CFormField argCFormField, idrs_exception *pargException) |
| GetName returns the field partial name. | |
| IDRS_INT | CFormField_GetCalculationPriority (const CFormField argCFormField, idrs_exception *pargException) |
| GetCalculationPriority retrieves the priority for ordering the calculated fields. | |
| CFormFieldStyle | CFormField_GetStyle (const CFormField argCFormField, idrs_exception *pargException) |
| GetStyle returns the style associated with this field. | |
| CFormAction | CFormField_GetFormAction (const CFormField argCFormField, enum FormFieldEventType const argEvent, idrs_exception *pargException) |
| GetFormAction returs the action bound to the specified event. | |
| void | CFormField_SetName (CFormField argCFormField, const idrs_string strName, idrs_exception *pargException) |
| SetName sets the field partial name. | |
| void | CFormField_SetCalculationPriority (CFormField argCFormField, IDRS_INT const argPriority, idrs_exception *pargException) |
| SetCalculationPriority sets the priority for ordering the evaluation of calculated fields. | |
| void | CFormField_SetStyle (CFormField argCFormField, const CFormFieldStyle argStyle, idrs_exception *pargException) |
| GetStyle returns the style associated with this field. | |
| void | CFormField_SetFormAction (CFormField argCFormField, enum FormFieldEventType const argEvent, const CFormAction argAction, idrs_exception *pargException) |
| SetFormAction binds an action to the field for the specified event. | |
| void | CFormField_UnbindFormAction (CFormField argCFormField, enum FormFieldEventType const argEvent, idrs_exception *pargException) |
| UnbindFormAction unbinds the action associated with the specified event. | |
| void | CFormField_Destroy (CFormField argCFormField, idrs_exception *pargException) |
| Destroys a CFormField handle. | |
| CFormFieldArray | ArrayInterface_Create_CFormFieldArray (idrs_exception *pargException) |
| Creates a new CFormFieldArray object. | |
Interface for CFormField wrapper.
| CFormFieldArray ArrayInterface_Create_CFormFieldArray | ( | idrs_exception * | pargException | ) |
Creates a new CFormFieldArray object.
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| CFormField CFormField_Create | ( | enum FormFieldType const | argFormFieldType, |
| idrs_exception * | pargException | ||
| ) |
Creates a new Form Field element of the given type.
| argFormFieldType | Type of the form field to be created |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| CFormField CFormField_Create2 | ( | enum FormFieldType const | argFormFieldType, |
| const IDRS_RECT * | argBoundingBox, | ||
| idrs_exception * | pargException | ||
| ) |
Creates a new Form Field element of the given type with the given bounding box.
| argFormFieldType | Type of the form field to be created |
| argBoundingBox | The bounding box of the field element |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CFormField_Destroy | ( | CFormField | argCFormField, |
| idrs_exception * | pargException | ||
| ) |
Destroys a CFormField handle.
| argCFormField | CFormField handle to destroy |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| IDRS_INT CFormField_GetCalculationPriority | ( | const CFormField | argCFormField, |
| idrs_exception * | pargException | ||
| ) |
GetCalculationPriority retrieves the priority for ordering the calculated fields.
| argCFormField | CFormField handle |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| CFormAction CFormField_GetFormAction | ( | const CFormField | argCFormField, |
| enum FormFieldEventType const | argEvent, | ||
| idrs_exception * | pargException | ||
| ) |
GetFormAction returs the action bound to the specified event.
| argCFormField | CFormField handle |
| argEvent | Event that triggers the action |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| enum FormFieldType CFormField_GetFormFieldType | ( | const CFormField | argCFormField, |
| idrs_exception * | pargException | ||
| ) |
GetFormFieldType returns the form field type.
| argCFormField | CFormField handle |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| const idrs_string CFormField_GetName | ( | const CFormField | argCFormField, |
| idrs_exception * | pargException | ||
| ) |
GetName returns the field partial name.
| argCFormField | CFormField handle |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| CFormField CFormField_GetParent | ( | const CFormField | argCFormField, |
| idrs_exception * | pargException | ||
| ) |
Get the parent group.
| argCFormField | CFormField handle |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| CFormFieldStyle CFormField_GetStyle | ( | const CFormField | argCFormField, |
| idrs_exception * | pargException | ||
| ) |
GetStyle returns the style associated with this field.
| argCFormField | CFormField handle |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CFormField_SetCalculationPriority | ( | CFormField | argCFormField, |
| IDRS_INT const | argPriority, | ||
| idrs_exception * | pargException | ||
| ) |
SetCalculationPriority sets the priority for ordering the evaluation of calculated fields.
| argCFormField | CFormField handle |
| argPriority | The priority value. Any arbitrary integer value is allowed, where an higher |
| pargException | Pointer to exception structure that will be filled if an exception occurs value is considered as higher priority (default: 0). |
| void CFormField_SetFormAction | ( | CFormField | argCFormField, |
| enum FormFieldEventType const | argEvent, | ||
| const CFormAction | argAction, | ||
| idrs_exception * | pargException | ||
| ) |
SetFormAction binds an action to the field for the specified event.
| argCFormField | CFormField handle |
| argEvent | Event that triggers the action |
| argAction | Form action to execute for the specified event. |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CFormField_SetName | ( | CFormField | argCFormField, |
| const idrs_string | strName, | ||
| idrs_exception * | pargException | ||
| ) |
SetName sets the field partial name.
| argCFormField | CFormField handle |
| strName | String containing the partial name |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CFormField_SetStyle | ( | CFormField | argCFormField, |
| const CFormFieldStyle | argStyle, | ||
| idrs_exception * | pargException | ||
| ) |
GetStyle returns the style associated with this field.
| argCFormField | CFormField handle |
| argStyle | The field style object. |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| void CFormField_UnbindFormAction | ( | CFormField | argCFormField, |
| enum FormFieldEventType const | argEvent, | ||
| idrs_exception * | pargException | ||
| ) |
UnbindFormAction unbinds the action associated with the specified event.
| argCFormField | CFormField handle |
| argEvent | Event that triggers the action |
| pargException | Pointer to exception structure that will be filled if an exception occurs |