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

constants group AccessibleTableModelChangeType

Constants
INSERT One or more rows and/or columns have been inserted.  
DELETE One or more rows and/or columns have been deleted.  
UPDATE Some of the table data has changed.  
Constants' Details
INSERT
const short INSERT = 1;
Description
One or more rows and/or columns have been inserted.

Use the fields of the AccessibleTableModelChange structure to determine the indices of the rows and/or columns that have been inserted.

DELETE
const short DELETE = 2;
Description
One or more rows and/or columns have been deleted.

The affected area of the table is stored in the fields of the AccessibleTableModelChange structure.

UPDATE
const short UPDATE = 3;
Description
Some of the table data has changed.

The number of rows and columns remains unchanged. Only (some of) the content of the cells in the range that is specified by the fields of the AccessibleTableModelChange structure have been changed.

Top of Page