Spread Windows Forms 6.0 Product Documentation
BindDataColumn Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : BindDataColumn Method


column
Column index
columnName
Name of the data source column

Glossary Item Box

Binds the column to the data source column for a sheet.

Syntax

Visual Basic (Declaration) 
Public Sub BindDataColumn( _
   ByVal column As Integer, _
   ByVal columnName As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim column As Integer
Dim columnName As String
 
instance.BindDataColumn(column, columnName)
C# 
public void BindDataColumn( 
   int column,
   string columnName
)

Parameters

column
Column index
columnName
Name of the data source column

Example

This example binds the specified columns to the data source columns.
C#Copy Code
string conStr = "Provider=Microsoft.JET.OLEDB.4.0;data source= " + Application.StartupPath + "\\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 da = new System.Data.OleDb.OleDbDataAdapter(sqlStr, conn);
fpSpread1.ActiveSheet.DataAutoSizeColumns = false; 
fpSpread1.ActiveSheet.DataMember = "Patients"; 
da.Fill(ds); 
fpSpread1.ActiveSheet.DataSource = ds;
fpSpread1.ActiveSheet.BindDataColumn(0, "sheetview");
fpSpread1.ActiveSheet.BindDataColumn(1, "LName");
Visual BasicCopy Code
Dim conStr As String = "Provider=Microsoft.JET.OLEDB.4.0;data source= " & Application.StartupPath & "\Patients2000.mdb"
Dim sqlStr As String = "SELECT * FROM Patients"
Dim conn As New System.Data.OleDb.OleDbConnection(conStr)
Dim ds As DataSet = New DataSet()
Dim da As New System.Data.OleDb.OleDbDataAdapter(sqlStr, conn)
FpSpread1.ActiveSheet.DataAutoHeadings = False
FpSpread1.ActiveSheet.DataMember = "Patients"
da.Fill(ds)
FpSpread1.ActiveSheet.DataSource = ds
FpSpread1.ActiveSheet.BindDataColumn(0, "sheetview")
FpSpread1.ActiveSheet.BindDataColumn(1, "LName")

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.