Spread for ASP.NET 11 Product Documentation
ColumnHeaderDataModel Property
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : ColumnHeaderDataModel Property
Gets or sets the data for the column header.
Syntax
'Declaration
 
Public Property ColumnHeaderDataModel As ISheetDataModel
'Usage
 
Dim instance As SheetView
Dim value As ISheetDataModel
 
instance.ColumnHeaderDataModel = value
 
value = instance.ColumnHeaderDataModel
public ISheetDataModel ColumnHeaderDataModel {get; set;}

Property Value

ISheetDataModel object containing the data
Remarks

This property is available at run time only.

To get or set the object for the row header, use the RowHeaderDataModel property.

Example
This example returns the number of columns in the sheet to a list box.
FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView; 
ListBox1.Items.Add(Convert.ToString(sv.ColumnHeaderDataModel.ColumnCount)); 
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
ListBox1.Items.Add(sv.ColumnHeaderDataModel.ColumnCount)
See Also

Reference

SheetView Class
SheetView Members
RowHeaderDataModel Property

User-Task Documentation

Customizing the Appearance of Headers