BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
gridControl1[rowIndex, colIndex].CellType = "ColorEdit";
gridControl1[rowIndex, colIndex].CellValue = Color.Aqua;
gridControl1[rowIndex, colIndex].CellValueType = typeof(Color)
//.....
Color c = (Color)this.gridControl1[26,1].CellValue;
Console.WriteLine(c);
Console.WriteLine(c.R);
Console.WriteLine(c.G);
Console.WriteLine(c.B);
>gridControl1[rowIndex, colIndex].CellType = "ColorEdit";
>gridControl1[rowIndex, colIndex].CellValue = Color.Aqua;
>gridControl1[rowIndex, colIndex].CellValueType = typeof(Color)
>
>//.....
>
>Color c = (Color)this.gridControl1[26,1].CellValue;
>
>Console.WriteLine(c);
>Console.WriteLine(c.R);
>Console.WriteLine(c.G);
>Console.WriteLine(c.B);
>
gridControl1(4, 4).CellValueType = GetType(Color)
Just FYI, there is a C# to VB code coverter on this website that does a pretty good job on coverting snippets from C# to VB.
http://authors.aspalliance.com/aldotnet/examples/translate.aspx
>gridControl1(4, 4).CellValueType = GetType(Color)
>
>
>Just FYI, there is a C# to VB code coverter on this website that does a pretty good job on coverting snippets from C# to VB.
>http://authors.aspalliance.com/aldotnet/examples/translate.aspx
>