Forum Discussion
Dmitry_Nikolaev
Staff
16 years agoHi Savitri,
If you want to get the value of the TcxMRUEdit box, you can use the Text property for this. If you want to get the actual mask accepted by this control, you can use the Properties.EditMask property. For example:
var maskEdit = Sys.Process("MyProcess").VCLObject("MyForm").VCLObject("MyMaskEdit");
Log.Message(maskEdit.Text);
Log.Message(maskEdit.Properties.EditMask);
If you need something else, please clarify your question.