I have an UltraOptionSet in a WinForm with several other controls. If a box is checked on the form I need to disable or hide several options in the UltraOptionSet so users can't click them. I can detect when the box is checked, but how do I disable or hide options from theOptionSet at runtime?
The optionSet can be enabled or disabled, but I don't see such a property on optionSet items.
Hi,
There's no way to hide items, you can only remove them. You should Submit a feature request to Infragistics
Hi Mike,
You mentioned in couple of posts that an individual items can be removed. Could you please let me know how I can remove an item.
Thanks
The Items property on the OptionSet has both Remove() and RemoveAt() methods that should allow you to remove items from the list.
-Matt