[RESOLVED] Underline & Bold Table Cell
I am creating a table programmatically using c# & asp.net and everything is working. I need to set the cells that are the column headings so the text is underlined and bold.
How do is it done? I have searched a lot on but have not found any solutions.
Thanks for any guidance.
Re: Underline & Bold Table Cell
I'm thinking this should do what you want...
Code:
TableCell tc = new TableCell();
tc.Font.Bold = true;
tc.Font.Underline = true;
Re: Underline & Bold Table Cell
Thanks so much! That is actually what I was looking for, I was close but just did not use the = true.