Spread Silverlight Documentation
SetColumnName Method
Example 


The column index of the table header. The index is zero-based.
The header text. A null value indicates that the cell value of the sheet is displayed.
Sets the table header text with a specified index.
Syntax
'Declaration
 
Public Sub SetColumnName( _
   ByVal tableColumnIndex As System.Integer, _
   ByVal name As System.String _
) 
'Usage
 
Dim instance As SheetTable
Dim tableColumnIndex As System.Integer
Dim name As System.String
 
instance.SetColumnName(tableColumnIndex, name)
public void SetColumnName( 
   System.int tableColumnIndex,
   System.string name
)

Parameters

tableColumnIndex
The column index of the table header. The index is zero-based.
name
The header text. A null value indicates that the cell value of the sheet is displayed.
Example
This example creates a table.
//Add data
for (var col = 1; col < 6; col++) {
    for (var row = 2; row < 11; row++) {
        GcSpreadSheet1.Sheets[0].SetValue(row, col, row + col);
    }
}

var sTable = GcSpreadSheet1.Sheets[0].AddTable("table1", 1, 1, 10, 5, GrapeCity.Windows.SpreadSheet.Data.TableStyles.Medium2);
sTable.ShowFooter = true;
//set footer value
sTable.SetColumnName(0, "Total");
//set footer formula
sTable.SetColumnFormula(4, "SUM(F3:F11)");
'Add data
For col As Integer = 1 To 5
    For row As Integer = 2 To 10
        GcSpreadSheet1.Sheets(0).SetValue(row, col, row + col)
    Next
Next

Dim sTable = GcSpreadSheet1.Sheets(0).AddTable("table1", 1, 1, 10, 5, GrapeCity.Windows.SpreadSheet.Data.TableStyles.Medium2)
sTable.ShowFooter = True
'set footer value
sTable.SetColumnName(0, "Total")
'set footer formula
sTable.SetColumnFormula(4, "SUM(F3:F11)")
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

SheetTable Class
SheetTable Members

 

 


Copyright © GrapeCity, inc. All rights reserved.