gridcontrol_03:bug fix for #i111107#, added update methods to xgriddatamodel
This commit is contained in:
parent
9fb61939df
commit
69d62202d7
1 changed files with 20 additions and 0 deletions
|
@ -89,6 +89,26 @@ interface XGridDataModel: ::com::sun::star::lang::XComponent
|
|||
*/
|
||||
void removeAll();
|
||||
|
||||
/**Updates the content of a given cell.
|
||||
@param row
|
||||
the row index
|
||||
@param column
|
||||
the column index
|
||||
@param value
|
||||
the new value of the cell.
|
||||
*/
|
||||
void updateCell([in] long row, [in] long column, [in] any value );
|
||||
|
||||
/**Updates the content of a given row.
|
||||
@param row
|
||||
the row index
|
||||
@param columns
|
||||
column indexes of the cells, which should be updated
|
||||
@param value
|
||||
the new values of the cells.
|
||||
*/
|
||||
void updateRow([in] long row, [in] sequence< long > columns, [in] sequence< any > values);
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
/** Adds a listener for the <type>GridDataEvent</type> posted after the grid changes.
|
||||
|
|
Loading…
Reference in a new issue