I want to be able to apply custom formatting for some of the columns in the UltraGrid.
I want some of my double columns to be formatted in a specific way:
I also want this values to be editable and displayed in the same format while editing.
There is a way to achieve this for the standard Microsoft data grid by overriding the following methods of the DataGridTextBoxColumn:
The methods you refer to here in the DataGridViewColumn seem like that are similar to the DataFilter. The DataFilter allows you to intercept and modify the value as it moved from the editor to the display and vice versa.
Thanks for your replies Mike!
It seems to me (I haven't tried yet) that this will only work when user is editing the value.
CellUIElement, for example, doesn't have any properties which would allow you to assign a DataFilter.
Am I right?