Spread Silverlight Documentation
BindDataColumn Method
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class : BindDataColumn Method
The column index.
The name of the data source column.
Binds the column to the data source column for a sheet.
Syntax
'Declaration
 
Public Sub BindDataColumn( _
   ByVal column As System.Integer, _
   ByVal dataField As System.String _
) 
'Usage
 
Dim instance As Worksheet
Dim column As System.Integer
Dim dataField As System.String
 
instance.BindDataColumn(column, dataField)
public void BindDataColumn( 
   System.int column,
   System.string dataField
)

Parameters

column
The column index.
dataField
The name of the data source column.
Example
This example uses the BindDataColumn method.
public class lname
        {
            public string last { get; set; }
            public int val { get; set; }
            public lname(string last, int val)
            {
                this.last = last;
                this.val = val;
            }
        }

lname[] arr = new lname[] { new lname("Smith", 100), new lname("Fender", 3), new lname("Gill", 5) };
            gcSpreadSheet1.Sheets[0].DataSource = arr;
            gcSpreadSheet1.Sheets[0].BindDataColumn(1, "last");
            gcSpreadSheet1.Sheets[0].BindDataColumn(0, "val"); 
Public Class lname
    Public Property last() As String
        Get
            Return m_last
        End Get
        Set
            m_last = Value
        End Set
    End Property
    Private m_last As String
    Public Property val() As Integer
        Get
            Return m_val
        End Get
        Set
            m_val = Value
        End Set
    End Property
    Private m_val As Integer
    Public Sub New(last As String, val As Integer)
        Me.last = last
        Me.val = val
    End Sub
End Class

Dim arr As lname() = New lname() {New lname("Smith", 100), New lname("Fender", 3), New lname("Gill", 5)}
gcSpreadSheet1.Sheets(0).DataSource = arr
gcSpreadSheet1.Sheets(0).BindDataColumn(1, "last")
gcSpreadSheet1.Sheets(0).BindDataColumn(0, "val")
See Also

Reference

Worksheet Class
Worksheet Members