BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
TextRenderingHint save;
private void gridControl1_DrawCell(object sender, Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs e)
{
if(e.RowIndex == 2 && e.ColIndex == 2)
{
save = e.Graphics.TextRenderingHint;
e.Graphics.TextRenderingHint = TextRenderingHint.AntiAlias;
}
}
private void gridControl1_CellDrawn(object sender, Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs e)
{
if(e.RowIndex == 2 && e.ColIndex == 2)
{
e.Graphics.TextRenderingHint = save;
}
}