Spread for ASP.NET 7.0 Product Documentation
SetModelDataColumn Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : SetModelDataColumn Method


column
Model column index
columnName
Name of the data source column

Glossary Item Box

Binds the model column to the data source column.

Syntax

Visual Basic (Declaration) 
Public Sub SetModelDataColumn( _
   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.SetModelDataColumn(column, columnName)
C# 
public void SetModelDataColumn( 
   int column,
   string columnName
)

Parameters

column
Model column index
columnName
Name of the data source column

Example

This example illustrates the use of this member by setting the column to bind to the data source field.
C#Copy Code
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView;
sv.SetModelDataColumn(0, "Owner");
sv.SetModelDataColumn(1, "State");
sv.SetModelDataColumn(2, "City");
Visual BasicCopy Code
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
sv.SetModelDataColumn(0, "Owner")
sv.SetModelDataColumn(1, "State")
sv.SetModelDataColumn(2, "City")

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

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