LibreOffice
LibreOffice 24.2 SDK API Reference
|
Interface to query for controls and control properties supported by the implementing instance. More...
Public Member Functions | |
sequence< string > | getSupportedControls () |
Query for the supported controls of a service instance. | |
boolean | isControlSupported ([in] string aControlName) |
Returns whether the specified control is supported or not. | |
sequence< string > | getSupportedControlProperties ([in] string aControlName) raises ( com::sun::star::lang::IllegalArgumentException ) |
Returns a sequence with properties supported by the specified control. | |
boolean | isControlPropertySupported ([in] string aControlName, [in] string aControlProperty) raises ( com::sun::star::lang::IllegalArgumentException ) |
Returns whether control property is supported by a control. | |
![]() | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. | |
void | acquire () |
increases the reference counter by one. | |
void | release () |
decreases the reference counter by one. | |
Interface to query for controls and control properties supported by the implementing instance.
sequence< string > getSupportedControlProperties | ( | [in] string | aControlName | ) | |
raises | ( | com::sun::star::lang::IllegalArgumentException | |||
) |
Returns a sequence with properties supported by the specified control.
aControlName | The name of the control. Common control names are for instance "OkButton" or "CancelButton". |
com::sun::star::lang::IllegalArgumentException | when the specified control is not supported. |
sequence< string > getSupportedControls | ( | ) |
Query for the supported controls of a service instance.
boolean isControlPropertySupported | ( | [in] string | aControlName, |
[in] string | aControlProperty | ||
) | |||
raises | ( | com::sun::star::lang::IllegalArgumentException | |
) |
Returns whether control property is supported by a control.
aControlName | The name of the control. |
aControlProperty | The control property to query for. |
TRUE
if the specified control action is supported. FALSE
if the specified control action is not supported.com::sun::star::lang::IllegalArgumentException | when the specified control is not supported. |
boolean isControlSupported | ( | [in] string | aControlName | ) |
Returns whether the specified control is supported or not.
aControlName | The name of the control. Common control names are for instance "OkButton" or "CancelButton". |
TRUE
if the specified control is supported. FALSE
if the specified control is not supported.