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


column
Column index

Glossary Item Box

Gets the column name at the specified position.

Syntax

Visual Basic (Declaration) 
Function GetDataColumnName( _
   ByVal column As Integer _
) As String
Visual Basic (Usage)Copy Code
Dim instance As IDataSourceSupport
Dim column As Integer
Dim value As String
 
value = instance.GetDataColumnName(column)
C# 
string GetDataColumnName( 
   int column
)

Parameters

column
Column index

Return Value

String containing the column name

Example

This example returns the column name at the specified index.
C#Copy Code
FarPoint.Win.Spread.Model.IDataSourceSupport dss ;
DataTable dt = new DataTable("Testing");
string s;
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;
s = dss.GetDataColumnName(1);
label1.Text = "The name of the column is " + s;
Visual BasicCopy Code
Dim dss As FarPoint.Win.Spread.Model.IDataSourceSupport
Dim dt As New DataTable("Testing")
Dim s As String
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
s = dss.GetDataColumnName(1)
Label1.Text = "The name of the column is " & s

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.