Spread for ASP.NET 8.0 Product Documentation
DragColumnCssClass Property
Example 


Gets or sets the CSS class for the column being dragged during grouping.
Syntax
'Declaration
 
Public Property DragColumnCssClass As String
'Usage
 
Dim instance As FpSpread
Dim value As String
 
instance.DragColumnCssClass = value
 
value = instance.DragColumnCssClass
public string DragColumnCssClass {get; set;}
Remarks
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.DragColumnCssClass = "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.DragColumnCssClass = "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

User-Task Documentation

Managing Grouping of Rows
Assigning a Style Sheet

 

 


Copyright © GrapeCity, inc. All rights reserved.