Hi, I have a UltraGrid. One Column has as Editorcontrol an UltraNumericEditor.
This UltraNumericEditor is used like this:
Dim anz As Integer = 3
Dim dez as Integer = 4
uneWerte.MaskInput = "{double:-" & anz & "." & dez & ":c}"
uneWerte.DisplayMode = UltraWinMaskedEdit.MaskMode.IncludeLiterals
uneWerte.NumericType=Double
myUltraGrid.DisplayLayout.Bands(0).Columns("w").EditorControl = uneWerte
Now I have to change this so that in that column could also be a points "." or three points "..." or "-". Which control have I to use and how should the MaskInput look like? I don't know how to say that either numerics OR this ".", "...", "-" are allowed...??????
Thank you so much!!!!
The control does not support conditional mask characters; if you like you can submit a feature request for such functionality.
If you want to have different masks in difference cells of the same column, you can assign an editor to each Cell, rather than to the entire column. But you would, of course, have to know which mask you wanted to apply before the user begins editing the cell.