TAdvStringGrid editing fixed columns

Is there a way I can have any control over the fixed column editor? For example, set MaxLength, force UpperCase, etc.

I have 2 fixed cols which I want to make editable, the first should be UpperCase, MaxLength 5, the 2nd any case, MaxLength 50. OnGetEditorProp isn't called when editing a fixed cell.

I thought the fixed editor (Grid.FixedEdit) is just a TEdit descendant, but it doesn't have a MaxLength property, and I'm not sure where I'd set it anyway!!

This inplace editor descends from TCustomEdit and MaxLength was not exposed.
We have exposed MaxLength & CharCase now as public property for Grid.FixedEdit and this will be available in the next update.

Thanks Bruno, I'll look out for the update.

Where would be the best place to set the properties, which differ per column, considering OnGetEditorProp isn't called?

grid.OnFixedEdit