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

service TableColumn
Description
represents a special cell range containing all cells of a single specific column in a table or spreadsheet.
Developers Guide
9.3.1 Spreadsheet Documents - Working with Spreadsheet Documents - Document Structure - Spreadsheet Services - Overview

Exported Interfaces
XCellRange
Description
provides access to the cells of this column.
::com::sun::star::beans::XPropertySet
Description
provides access to the cell properties of all cells of this column.
::com::sun::star::container::XNamed
Description
provides methods to access the name of the column.

In spreadsheets, the name of a column cannot be changed.

Properties' Summary
long
Width
contains the width of the column (in 1/100th mm).  
boolean
OptimalWidth
is true , if the column always keeps its optimal width.  
boolean
IsVisible
is true , if the column is visible.  
boolean
IsStartOfNewPage
is true , if there is a manual horizontal page break attached to the column.  
Properties' Details
Width
long Width;
Description
contains the width of the column (in 1/100th mm).

When hidden, it returns the width which the column would have, if it were visible.

OptimalWidth
boolean OptimalWidth;
Description
is true , if the column always keeps its optimal width.
IsVisible
boolean IsVisible;
Description
is true , if the column is visible.
IsStartOfNewPage
boolean IsStartOfNewPage;
Description
is true , if there is a manual horizontal page break attached to the column.

 
Top of Page