Hi
I would like to track the edit mode in an UltraCombo, i.e. I'm looking for functionality similar to the IsInEditMode flag and the Before/AfterEnterEditMode & Before/AfterExitEditMode events on the TextEditorControlBase.
Is there a way to do this?
thanks & kind regards,olivier
Hi Olivier,
I'm not sure why the control doesn't expose these properties and events. Probably just an oversight, since the UltraCombo was originally not an embeddable editor.
You could use the Enter and Leave events, and the ContainsFocus method for essentially the same things, though.
Hi Mike
thanks for the hint. I took a look at the UltraCombo code and managed to do it using the Enter/Leave events.
Should I post an Issue?
olivier