:: com :: sun :: star :: table ::

interface XTable
Base Interfaces
XTable
┣ ::com::sun::star::lang::XComponentXCellRangeXColumnRowRange
┣ ::com::sun::star::util::XModifiable
┃ ┗ ::com::sun::star::util::XModifyBroadcaster
┣ ::com::sun::star::beans::XPropertySet
┗ ::com::sun::star::beans::XFastPropertySet

::com::sun::star::lang::XComponent
(referenced interface's summary:)
XCellRange
(referenced interface's summary:)
XColumnRowRange
(referenced interface's summary:)
::com::sun::star::util::XModifiable
Description
interface to make the modify state of the table accessible.

Additionally, it makes it possible to register listener objects, which get notification whenever the content of the table changes.

::com::sun::star::beans::XPropertySet
(referenced interface's summary:)
::com::sun::star::beans::XFastPropertySet
(referenced interface's summary:)

Methods' Summary
createCursor creates a cell cursor including the whole table  
createCursorByRange creates a cell cursor to travel in the given range context.  
Attributes' Summary
RowCount stores the current row count of this table  
ColumnCount stores the current column count of this table  
Methods' Details
createCursor
XCellCursor
createCursor();

Description
creates a cell cursor including the whole table
See also
CellCursor
createCursorByRange
XCellCursor
createCursorByRange( [in] XCellRange  Range )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
creates a cell cursor to travel in the given range context.
Parameter aRange
the cell range for the cursor.
Throws
::com::sun::star::lang::IllegalArgumentException if the given reference is empty or not a range from this table.
See also
CellCursor
Attributes' Details
RowCount
[ readonly ] long RowCount;
Description
stores the current row count of this table
ColumnCount
[ readonly ] long ColumnCount;
Description
stores the current column count of this table
Top of Page