Spread for ASP.NET 8.0 Product Documentation
GroupColumnHeaderCssClass Property
Example 


Gets or sets the CSS class for the column headers on the group bar.
Syntax
'Declaration
 
Public Property GroupColumnHeaderCssClass As String
'Usage
 
Dim instance As FpSpread
Dim value As String
 
instance.GroupColumnHeaderCssClass = value
 
value = instance.GroupColumnHeaderCssClass
public string GroupColumnHeaderCssClass {get; set;}

Property Value

String containing the name of the CSS class
Example
<style>
.CssStyle1 { FONT: 700 12pt verdana; COLOR: yellow }
</style>

string conStr = "Provider=Microsoft.JET.OLEDB.4.0;data source= c:\\Patients2000.mdb";
string sqlStr = "SELECT * FROM Patients";
System.Data.OleDb.OleDbConnection conn = new System.Data.OleDb.OleDbConnection(conStr);
DataSet ds = new DataSet();
System.Data.OleDb.OleDbDataAdapter daCust = new System.Data.OleDb.OleDbDataAdapter(sqlStr, conn);
daCust.Fill(ds);
FpSpread1.DataSource = ds;

FpSpread1.ActiveSheetView.AllowColumnMove = true;
FpSpread1.ActiveSheetView.GroupBarVisible = true;
FpSpread1.ActiveSheetView.AllowGroup = true;
FpSpread1.GroupColumnHeaderCssClass = "CssStyle1";
<style>
.CssStyle1 { FONT: 700 12pt verdana; COLOR: yellow }
</style>

Dim conStr As String = "Provider=Microsoft.JET.OLEDB.4.0;data source= c:\Patients2000.mdb"
Dim sqlStr As String = "SELECT * FROM Patients"
Dim conn As System.Data.OleDb.OleDbConnection = New System.Data.OleDb.OleDbConnection(conStr)
Dim ds As DataSet = New DataSet
Dim daCust As System.Data.OleDb.OleDbDataAdapter = New System.Data.OleDb.OleDbDataAdapter(sqlStr, conn)
daCust.Fill(ds)
FpSpread1.DataSource = ds

FpSpread1.ActiveSheetView.AllowColumnMove = True
FpSpread1.ActiveSheetView.GroupBarVisible = True
FpSpread1.ActiveSheetView.AllowGroup = True
FpSpread1.GroupColumnHeaderCssClass = "CssStyle1"
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

FpSpread Class
FpSpread Members

 

 


Copyright © GrapeCity, inc. All rights reserved.