Name
itcluno::TextTable - A TextTable Class for Openoffice.org's TextTable
Synopsis
itcluno::TextTable objectname ?options?
Inheritance
Standard Options
-rows - number of rows for the TextTable
-columns - number of columns for the TextTable
-documentobject - the handle for the document where the TextTable exists
Methods
objectname getCellValue cellIndexgets the value of the cellIndex.
Return-Value: the string in the cell cellIndex
objectname getPropertyValues {propertyList ""}gets all or the specified properties
Return-Value: a list of the appropriate properties and values
objectname getRangePropertyValues type range {propertyList ""}gets the specified properties for the specified range. Type must be one of: row, column or cell. if type == cell, range must be like a cell.
Return-Value: a list of the appropriate properties and values
objectname insertColumns insertBefore {insertCount 1}insert insertCount columns
Return-Value:
objectname insertRows insertBefore {insertCount 1}insert insertCount columns
Return-Value:
objectname removeColumns removeStart {removeCount 1}removes removeCount columns starting at removeStart
Return-Value:
objectname removeRows removeStart {removeCount 1}removes removeCount rows starting at removeStart
Return-Value:
objectname setCellValue cellIndex valueListsets values starting at cellIndex. valuelist is a list of lists. Each list contains the values for a row.
Return-Value:
objectname setPropertyValues propertyListsets the specified properties for the text table. propertylist mus have the of form of options
Return-Value:
Bugs
no bugs known, but of course no software is bug free. If found one, file them to the bug section on our sourceforge page.
ToDo
a lot of new features which I find useful. If you find that anything useful is missing, please let me know via the bug report
Top