Got It. Implementing an IFormatProvider provides what I am looking for.
gridControl1.Columns[“Test Column”].FormatProvider = new ExampleNumberFormatter();
public
class ExampleNumberFormatter : IFormatProvider, ICustomFormatter {
public string Format(string fmt, object arg, IFormatProvider formatProvider){
…
}
}
Imported from legacy forums. Posted by Patrick (had 1283 views)