Reputation: 15320
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' ...
Upvotes: 0
Views: 633
Reputation: 15320
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();
Upvotes: 0
Reputation: 27214
You could always try reading the documentation.
To allow the RadMaskedTextBox to display its content in multiple lines you have to set the TextMode property to MultiLine
Work backwards to get whether the textbox is single- or multi-line.
See here for the documentation on the TextMode
property.
Upvotes: 1