Using the Telerik RadMaskedTextBox control in C#, how can I tell if the underlying textbox allows multiline input
Edit: The Silverlight version does not appear to contain the .Textmode property and returns
'Telerik.Windows.Controls.RadMaskedTextBox' does not contain a definition for 'TextMode' ...
From the Telerik Support Forum:
The underlying TextBox is of type ExtendedTextBox. You can access it like so:
var innerBox = this.masktextBox.ChildrenOfType<Telerik.Windows.Controls.MaskedTextBox.ExtendedTextBox>().FirstOrDefault();