ListObjectCollection

ListObjectCollection

Overview

ListObjectCollection is a class in Aspose.Cells FOSS for Java.

Collection of Excel tables (ListObjects) on a worksheet.

Properties

NameTypeAccessDescription
countintRead

Methods

SignatureDescription
getCount()int
get(index: int)ListObjectReturns the table with the given display name (case-insensitive). Throws CellsException if not found.
get(name: String)ListObjectReturns the table with the given display name (case-insensitive).
add(startRow: int, startColumn: int, endRow: int, endColumn: int, hasHeaders: boolean)intAdds a table covering the given zero-based row/column range.
add(startCellName: String, endCellName: String, hasHeaders: boolean)intAdds a table from A1-style cell names (e.g.
removeAt(index: int)
parseTableStyleType(name: String)TableStyleType
tableStyleTypeName(type: TableStyleType)String

See Also