:: com :: sun :: star :: accessibility ::

struct AccessibleTableModelChange

Elements' Summary
Type The type of the event as defined in AccessibleTableModelChangeType.  
FirstRow The lowest index of a row that has changed.  
LastRow The highest index of a row that has changed.  
FirstColumn The lowest index of a column that has changed.  
LastColumn The highest index of a column that has changed.  
Elements' Details
Type
short Type;
Description
The type of the event as defined in AccessibleTableModelChangeType.

The model change either inserted or deleted one or more rows and/or columns or modified the content of a number of cells. See AccessibleTableModelChangeType for details of the type of the model change.

FirstRow
long FirstRow;
Description
The lowest index of a row that has changed.

The first row that has been changed or that contains modified cells.

LastRow
long LastRow;
Description
The highest index of a row that has changed.

The last row that has been changed or that contains modified cells.

FirstColumn
long FirstColumn;
Description
The lowest index of a column that has changed.

The first column that has been changed or contains modified cells.

LastColumn
long LastColumn;
Description
The highest index of a column that has changed.

The last column that has been changed or contains modified cells.

Top of Page