LibreOffice
LibreOffice 24.2 SDK API Reference
|
An instance of this interface is used by the XGridDataModel to get notifications about data model changes. More...
import"XGridDataListener.idl";
Public Member Functions | |
void | rowsInserted ([in] GridDataEvent Event) |
is called when one or more rows of data have been inserted into a grid control's data model. More... | |
void | rowsRemoved ([in] GridDataEvent Event) |
is called when one or more rows of data have been removed from a grid control's data model. More... | |
void | dataChanged ([in] GridDataEvent Event) |
is called when existing data in a grid control's data model has been modified. More... | |
void | rowHeadingChanged ([in] GridDataEvent Event) |
is called when the title of one or more rows changed. More... | |
Public Member Functions inherited from XEventListener | |
void | disposing ([in] com::sun::star::lang::EventObject Source) |
gets called when the broadcaster is about to be disposed. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
An instance of this interface is used by the XGridDataModel to get notifications about data model changes.
Usually you must not implement this interface yourself, but you must notify it correctly if you implement the XGridDataModel yourself
.
void dataChanged | ( | [in] GridDataEvent | Event | ) |
is called when existing data in a grid control's data model has been modified.
void rowHeadingChanged | ( | [in] GridDataEvent | Event | ) |
is called when the title of one or more rows changed.
void rowsInserted | ( | [in] GridDataEvent | Event | ) |
is called when one or more rows of data have been inserted into a grid control's data model.
void rowsRemoved | ( | [in] GridDataEvent | Event | ) |
is called when one or more rows of data have been removed from a grid control's data model.