I have a grid bound to a data source where based on the contents of a certain column in data source, I want to set the text on the individual row to bold. I am doing this in the initialize row event but don't know how to reference the current row being init'd not what prop to set to set the row text to bold (not the entire grid). Any guidance would be appreciated. Thanks.
e.Row.Appearance.FontData.Bold = DefaultableBoolean.True;
Helpful - yes works just as I want
Thanks