Hi,
First post guys. I have a Datagrid in a C# app. I want to format a single Cell so that it has multiple Font styles. EG. I want a word to be Bold and the rest to be normal text in a single cell. Is this even possible? Thanks for your help
Printable View
Hi,
First post guys. I have a Datagrid in a C# app. I want to format a single Cell so that it has multiple Font styles. EG. I want a word to be Bold and the rest to be normal text in a single cell. Is this even possible? Thanks for your help
you would have to inject html into the string your putting into the cell
so if your string was "This is my great string" and you wanted great to be bold you would first have to get the string and insert <b> tags into it.
"This is my <b>great</b> string.
then put that into the Datagrid Cell
hth,
mcm