a question regading fonts

g_r_a_robinson

Regular
Joined
Jan 13, 2004
Messages
71
I have a datagrid with text fields that I want to appear with a line through, as if crossed out.

In other words I simply want to know if theirs some proprty for putting a line through my text. I know you can make text bold, italic etc. But is their something I can use to put a line through it.

Hope it makes sense.

Thanks
 
could you give me an example of how I might use this programatically. Heres what I have:

if (jobCompleted == "true")
{
e.Item.BackColor = System.Drawing.Color.Gray;
// e.Item.Font.Strikeout = System.Drawing.Font; //I'm not sure here
}
 
wouldn't this just make the folt bold, or would it make them botjh bold? I really only need the line to be bold.

Sorry to seem ungrateful..
 
Back
Top