Spread Windows Forms 12.0 Product Documentation
TotalLabel Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > TableViewColumn Class : TotalLabel Property
Gets or sets the label in the total cell of the column.
Syntax
'Declaration
 
Public Property TotalLabel As String
'Usage
 
Dim instance As TableViewColumn
Dim value As String
 
instance.TotalLabel = value
 
value = instance.TotalLabel
public string TotalLabel {get; set;}
Example
This example sets the TotalLabel property.
fpSpread1.Sheets[0].Cells[1, 1].Text = "Last Name";
fpSpread1.Sheets[0].Cells[1, 2].Text = "Value";
fpSpread1.Sheets[0].Cells[2, 1].Text = "Smith";
fpSpread1.Sheets[0].Cells[2, 2].Value = 50;
fpSpread1.Sheets[0].Cells[3, 1].Text = "Vil";
fpSpread1.Sheets[0].Cells[3, 2].Value = 10;
fpSpread1.Sheets[0].Cells[4, 1].Text = "Press";
fpSpread1.Sheets[0].Cells[4, 2].Value = 78;
FarPoint.Win.Spread.TableView table = fpSpread1.Sheets[0].AddTable("table", 1, 1, 5, 2);
table.TotalRowVisible = true;
table.TableColumns[0].TotalLabel = "Label1";
fpSpread1.Sheets(0).Cells(1, 1).Text = "Last Name"
fpSpread1.Sheets(0).Cells(1, 2).Text = "Value"
fpSpread1.Sheets(0).Cells(2, 1).Text = "Smith"
fpSpread1.Sheets(0).Cells(2, 2).Value = 50
fpSpread1.Sheets(0).Cells(3, 1).Text = "Vil"
fpSpread1.Sheets(0).Cells(3, 2).Value = 10
fpSpread1.Sheets(0).Cells(4, 1).Text = "Press"
fpSpread1.Sheets(0).Cells(4, 2).Value = 78
Dim table As FarPoint.Win.Spread.TableView = fpSpread1.Sheets(0).AddTable("table", 1, 1, 5, 2)
table.TotalRowVisible = True
table.TableColumns(0).TotalLabel = "Label1"
See Also

Reference

TableViewColumn Class
TableViewColumn Members