Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: form ::

interface XGridColumnFactory

Base Interface
com::sun::star::uno::XInterface

Description
provides the functionality of creating columns for a grid component.

With it is possible to inspect all possible column types which may be instanciated using .



Known Services which Export this Interface

com::sun::star::form::component::GridControl This service specifies a ControlModel to represent data in a table.

Methods' Summary

createColumn creates a new column object.
getColumnTypes returns a list of available column types.

Methods' Details

createColumn
 
com::sun::star::beans::XPropertySet
createColumn(
[ in ] string aColumnType )
raises ( com::sun::star::lang::IllegalArgumentException );

Description
creates a new column object.
Parameter aColumnType
the name of the column type.
Returns
the new column object.
Throws
com::sun::star::lang::IllegalArgumentException if the column type is not available.
getColumnTypes
 
sequence< string >
getColumnTypes();
Description
returns a list of available column types.
Returns
a list of column types.

Top of Page