Spread ASP.NET 6.0 Product Documentation
DataAutoCellTypes Property
See Also  Example Send Feedback
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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.