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


Glossary Item Box

Gets or sets whether a bound sheet automatically sets the cell type for the cells in a column.

Syntax

Visual Basic (Declaration) 
Public Property DataAutoCellTypes As Boolean
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As Boolean
 
instance.DataAutoCellTypes = value
 
value = instance.DataAutoCellTypes
C# 
public bool DataAutoCellTypes {get; set;}

Property Value

Boolean: true to automatically set the cell type for the cells in a column of a bound sheet; false otherwise

Example

This example automatically sets the cell type for the cells in a column.
C#Copy Code
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView;
string conStr = "Provider=Microsoft.JET.OLEDB.4.0;data source= d:\\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);
sv.DataAutoCellTypes = true; 
sv.DataMember = "Patients"; 
da.Fill(ds); 
sv.DataSource = ds;
Visual BasicCopy Code
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
Dim conStr As String = "Provider=Microsoft.JET.OLEDB.4.0;data source= d:\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)
sv.DataAutoCellTypes = True
sv.DataMember = "Patients"
da.Fill(ds)
sv.DataSource = ds

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.