In This Topic
Represents a table that can be added in a sheet.
Syntax
var value; // Type: any
value = GC.Spread.Sheets.Tables.Table(name,
row,
col,
rowCount,
colCount,
style,
options,
options.showHeader,
options.showFooter,
options.useFooterDropDownList,
options.showResizeHandle);
function Table(
: string,
: number,
: number,
: number,
: number,
: TableTheme,
: Object,
(optional) : boolean,
(optional) : boolean,
(optional) : boolean,
(optional) options.showResizeHandle : boolean
) : any;
Parameters
- name
- The table name.
- row
- The table row index.
- col
- The table column index.
- rowCount
- The table row count.
- colCount
- The table column count.
- style
- The table style.
- options
- The initialization options of the table.
- options.showHeader
- Whether to display a header.
- options.showFooter
- Whether to display a footer.
- options.useFooterDropDownList
- whether to use the footer dropdown list for a total row.
- options.showResizeHandle
- Whether to display the resize handle for table.
See Also