ListObjectModel

ListObjectModel

Overview

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

Internal model for a table (ListObject / structured reference).

This class provides 31 methods for working with ListObjectModel objects in Java programs. Available methods include: getColumns, getComment, getDisplayName, getEndColumn, getEndRow, getId, getStartColumn, getStartRow, getTableStyleName, isAutoFilterEnabled, isShowHeaderRow, isShowTableStyleColumnStripes, and 19 additional methods. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: autoFilterEnabled, columns, comment, displayName, endColumn, endRow, and 10 more.

Description

ListObjectModel is a class in the Aspose.Cells FOSS library for Java that exposes 31 methods and 16 properties for programmatic use.

Core capabilities include: string; string; boolean. These operations enable developers to integrate listobjectmodel functionality directly into Java applications.

The class also provides the id property (gets the id), the displayName property (gets the display name), the comment property (gets the comment).

Properties

NameTypeAccessDescription
idintReadGets the id.
displayNameStringReadGets the display name.
commentStringReadGets the comment.
startRowintReadGets the start row.
startColumnintReadGets the start column.
endRowintReadGets the end row.
endColumnintReadGets the end column.
showHeaderRowbooleanReadGets the show header row.
showTotalsbooleanReadGets the show totals.
tableStyleNameStringReadGets the table style name.
showTableStyleFirstColumnbooleanReadGets the show table style first column.
showTableStyleLastColumnbooleanReadGets the show table style last column.
showTableStyleRowStripesbooleanReadGets the show table style row stripes.
showTableStyleColumnStripesbooleanReadGets the show table style column stripes.
autoFilterEnabledbooleanReadGets the auto filter enabled.
columnsList<ListColumnModel>ReadGets the columns.

Methods

SignatureDescription
getId()intReturns the id.
setId(id: int)Sets the id value.
getDisplayName()StringReturns the display name.
setDisplayName(displayName: String)Sets the display name value.
getComment()StringReturns the comment.
setComment(comment: String)Sets the comment value.
getStartRow()intReturns the start row.
setStartRow(startRow: int)Sets the start row value.
getStartColumn()intReturns the start column.
setStartColumn(startColumn: int)Sets the start column value.
getEndRow()intReturns the end row.
setEndRow(endRow: int)Sets the end row value.
getEndColumn()intReturns the end column.
setEndColumn(endColumn: int)Sets the end column value.
isShowHeaderRow()booleanReturns true if show header row is set.
setShowHeaderRow(showHeaderRow: boolean)Sets the show header row value.
isShowTotals()booleanReturns true if show totals is set.
setShowTotals(showTotals: boolean)Sets the show totals value.
getTableStyleName()StringReturns the table style name.
setTableStyleName(tableStyleName: String)Sets the table style name value.
isShowTableStyleFirstColumn()booleanReturns true if show table style first column is set.
setShowTableStyleFirstColumn(v: boolean)Sets the show table style first column value.
isShowTableStyleLastColumn()booleanReturns true if show table style last column is set.
setShowTableStyleLastColumn(v: boolean)Sets the show table style last column value.
isShowTableStyleRowStripes()booleanReturns true if show table style row stripes is set.
setShowTableStyleRowStripes(v: boolean)Sets the show table style row stripes value.
isShowTableStyleColumnStripes()booleanReturns true if show table style column stripes is set.
setShowTableStyleColumnStripes(v: boolean)Sets the show table style column stripes value.
isAutoFilterEnabled()booleanReturns true if auto filter enabled is set.
setAutoFilterEnabled(autoFilterEnabled: boolean)Sets the auto filter enabled value.
getColumns()List<ListColumnModel>Returns the columns.

See Also