FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : DataAutoCellTypes Property |
'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;}
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;
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
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