Spread.Sheets Documentation
headerIndex Method
GC.Spread.Sheets.Tables Namespace > Table type : headerIndex Method
Gets the header index in the sheet.
Syntax
var instance = new GC.Spread.Sheets.Tables.Table(name, row, col, rowCount, colCount, style, options);
var value; // Type: number
value = instance.headerIndex();
function headerIndex() : number;

Return Value

The header index.
Example
This example creates a table.
//Add data
for (var col = 1; col < 6; col++) {
    for (var row = 2; row < 11; row++) {
        activeSheet.setValue(row, col, row + col);
    }
}

var sTable = activeSheet.tables.add("table1", 1, 1, 10, 5, GC.Spread.Sheets.Tables.TableTheme.medium2);
var hindex = sTable.headerIndex();
alert(hindex);
See Also

Reference

Table type