I have several UltraTextEditors on a TabControl. Using a foreach statement, I would like to access the properties of each UlteTextEditor object on single TabControl.
I thought this might get the results I needed but I'm getting a systax error on the UltraTextEditors type. What type of object will get an UltraTextEditor?
foreach (Control cntrl in this..........)
{
if (cntrl.GetType() == typeof(UltraTextEditor)) // systax error //{ Console.WriteLine(cntrl.Name);
if (cntrl.GetType() == typeof(TextBox)) // this will get all MS textboxes //{ Console.WriteLine(cntrl.Name);}
}
Any suggestions are appreciated.
Hello,
I am just checking about the progress of this issue. Let me know If you need any further assistance on this matter?
Thank you for using Infragistics Components.