Is there a base class where the following classes were derived that would have the "appearance" property:
Infragistics.Win.UltraWinGrid.UltraCombo
Infragistics.Win.UltraWinEditors.UltraTextEditor
Infragistics.Win.UltraWinMaskedEdit.UltraMaskedEdit
Infragistics.Win.UltraWinEditors.UltraNumericEditor
I'm trying to cast an object to the base class of these controls and then set the appearance.backcolor property as red
No, there's no common base class for these 4 controls that has the Appearance property.
If you know your application will have full trust, you could get the Appearance property via reflection. Otherwise, you will need to cast into the specific types.
Okay thanks. Can you provide a simple example on how to use reflection?