Spread for ASP.NET 8.0 Product Documentation
ColumnFooterHeight Property
Example 


Gets or sets the column footer height.
Syntax
'Declaration
 
Public Property ColumnFooterHeight As Integer
'Usage
 
Dim instance As SheetView
Dim value As Integer
 
instance.ColumnFooterHeight = value
 
value = instance.ColumnFooterHeight
public int ColumnFooterHeight {get; set;}
Example
This example sets the models for a column footer.
FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView;
FarPoint.Web.Spread.StyleInfo info = new FarPoint.Web.Spread.StyleInfo();
info.Border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Teal, 2);
sv.ColumnFooterVisible = true;
sv.ColumnFooterHeight = 100;
sv.ColumnFooter.Rows.Count = 3;
sv.ColumnFooterSpanModel.Add(0, 0, 2, 2);
sv.ColumnFooterStyleModel.SetDirectInfo(0, 0, info);
sv.ColumnFooterRowAxisModel.SetSize(0, 50);
ListBox1.Items.Add(sv.ColumnFooterDataModel.ColumnCount.ToString());
ListBox1.Items.Add(sv.ColumnFooterDataModel.RowCount.ToString());
Dim sv As FarPoint.Web.Spread.SheetView = FpSpread1.ActiveSheetView
Dim info As New FarPoint.Web.Spread.StyleInfo()
info.Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, System.Drawing.Color.Teal, 2)
sv.ColumnFooterVisible = True
sv.ColumnFooterHeight = 100
sv.ColumnFooter.Rows.Count = 3
sv.ColumnFooterSpanModel.Add(0, 0, 2, 2)
sv.ColumnFooterStyleModel.SetDirectInfo(0, 0, info)
sv.ColumnFooterRowAxisModel.SetSize(0, 50)
ListBox1.Items.Add(sv.ColumnFooterDataModel.ColumnCount.ToString())
ListBox1.Items.Add(sv.ColumnFooterDataModel.RowCount.ToString())
Requirements

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

See Also

Reference

SheetView Class
SheetView Members

 

 


Copyright © GrapeCity, inc. All rights reserved.