:: com :: sun :: star :: awt :: grid ::

interface XGridDataListener
Base Interfaces
XGridDataListener
┗ ::com::sun::star::lang::XEventListener

::com::sun::star::lang::XEventListener
(referenced interface's summary:)

Methods' Summary
rowsInserted is called when one or more rows of data have been inserted into a grid control's data model.  
rowsRemoved is called when one or more rows of data have been removed from a grid control's data model.  
dataChanged is called when existing data in a grid control's data model has been modified.  
rowHeadingChanged is called when the title of one or more rows changed.  
Methods' Details
rowsInserted
void
rowsInserted( [in] GridDataEvent  Event );

Description
is called when one or more rows of data have been inserted into a grid control's data model.
rowsRemoved
void
rowsRemoved( [in] GridDataEvent  Event );

Description
is called when one or more rows of data have been removed from a grid control's data model.
dataChanged
void
dataChanged( [in] GridDataEvent  Event );

Description
is called when existing data in a grid control's data model has been modified.
rowHeadingChanged
void
rowHeadingChanged( [in] GridDataEvent  Event );

Description
is called when the title of one or more rows changed.
Top of Page