Spread Windows Forms 6.0 Product Documentation
IsColumnBound Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > IDataSourceSupport Interface : IsColumnBound Method


column
Index of a column in the model for which to return the status

Glossary Item Box

Determines whether the column is bound to a data source column.

Syntax

Visual Basic (Declaration) 
Function IsColumnBound( _
   ByVal column As Integer _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As IDataSourceSupport
Dim column As Integer
Dim value As Boolean
 
value = instance.IsColumnBound(column)
C# 
bool IsColumnBound( 
   int column
)

Parameters

column
Index of a column in the model for which to return the status

Return Value

Boolean: true if the column is bound; false otherwise

Example

This example returns if a column is bound to a data column.
C#Copy Code
FarPoint.Win.Spread.Model.IDataSourceSupport dss ;
DataTable dt = new DataTable("Testing");
bool b;
dt.Columns.Add("Number");
dt.Columns.Add("Letter");
dt.Rows.Add(new Object[] {"1", "One"});
dt.Rows.Add(new Object[] {"2", "Two"});
dss = (FarPoint.Win.Spread.Model.IDataSourceSupport)fpSpread1.ActiveSheet.Models.Data;
fpSpread1.DataSource = dt;
b = dss.IsColumnBound(1);
label1.Text = "Is column 1 bound = " + b.ToString();
Visual BasicCopy Code
Dim dss As FarPoint.Win.Spread.Model.IDataSourceSupport
Dim dt As New DataTable("Testing")
Dim b As Boolean
dt.Columns.Add("Number")
dt.Columns.Add("Letter")
dt.Rows.Add(New Object() {"1", "One"})
dt.Rows.Add(New Object() {"2", "Two"})
dss = FpSpread1.ActiveSheet.Models.Data
FpSpread1.DataSource = dt
b = dss.IsColumnBound(1)
Label1.Text = "Is column 1 bound = " & b.ToString()

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.