BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
GridCurrentCell cc = this.gridControl1.CurrentCell;
if(cc.RowIndex == e.RowIndex && cc.ColIndex == e.ColIndex)
{
//color current cell
e.Style.BackColor = Color.Black;//????
e.Style.TextColor = Color.White;//????
}
>GridCurrentCell cc = this.gridControl1.CurrentCell;
>if(cc.RowIndex == e.RowIndex && cc.ColIndex == e.ColIndex)
>{
> //color current cell
> e.Style.BackColor = Color.Black;//????
> e.Style.TextColor = Color.White;//????
>}
>