Articles in this section
Category / Section

How can I find the datatype of a bound columns dynamically ?

1 min read

 

We can find the datatype of a bound columns dynamically using CellValueType property.

C#

string s;

GridStyleInfo style = this.gridDataBoundGrid1.Binder.InternalColumns[0].StyleInfo;

s = this.gridDataBoundGrid1.Binder.InternalColumns[0].StyleInfo.CellValueType.ToString();

MessageBox.Show("DataType : " + s);

VB

Dim s As String

Dim style As Syncfusion.Windows.Forms.Grid.GridStyleInfo = Me.GridDataBoundGrid1.Binder.InternalColumns(0).StyleInfo

s = Me.GridDataBoundGrid1.Binder.InternalColumns(0).StyleInfo.CellValueType.ToString()

MessageBox.Show("DataType : " & s)

Sample

http://websamples.syncfusion.com/samples/kb/kb_datatype/main.htm

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied