Spread Windows Forms 9.0 Product Documentation
DataAutoCellTypes Property (SheetView)
Example 


Gets or sets whether a bound sheet automatically sets the cell type for the cells in a column.
Syntax
'Declaration
 
Public Property DataAutoCellTypes As Boolean
'Usage
 
Dim instance As SheetView
Dim value As Boolean
 
instance.DataAutoCellTypes = value
 
value = instance.DataAutoCellTypes
public bool DataAutoCellTypes {get; set;}

Property Value

Boolean: true if cell types are set automatically; false otherwise
Remarks
This property is a sheet-level setting and does not work on an individual column but the entire sheet. If you want the automatic cell types for the sheet, but want to override the cell types for some of the columns, use the DataColumnConfigure event.
Example
This example sets whether the cell types are automatically set based on the data in the database.
string conStr = "Provider=Microsoft.JET.OLEDB.4.0;data source= " + Application.StartupPath + "\\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);
fpSpread1.ActiveSheet.DataAutoCellTypes = true; 
fpSpread1.ActiveSheet.DataMember = "Patients"; 
da.Fill(ds); 
fpSpread1.ActiveSheet.DataSource = ds;
Dim conStr As String = "Provider=Microsoft.JET.OLEDB.4.0;data source= " & Application.StartupPath & "\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)
FpSpread1.ActiveSheet.DataAutoCellTypes = True
FpSpread1.ActiveSheet.DataMember = "Patients"
da.Fill(ds)
FpSpread1.ActiveSheet.DataSource = ds
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetView Class
SheetView Members

User-Task Documentation

Customizing Cell Types for Bound Sheets

 

 


Copyright © GrapeCity, inc. All rights reserved.