I have an UltraTabControl that has five tab. I allow the user to change the order the tabs display by dragging them in to position. How do I go about saving the new order so that when they open the application the order is the same as when they left? This setting would need to be saved workstation by workstation.
Thanks.
The UltraTabControl does not support saving and loading layouts files. You would need to save the tab order in a custom format to a file when the application closes and restore the tab order from the file when the application re-opens. You can also submit a feature request for saving and loading layouts here: http://devcenter.infragistics.com/Protected/RequestFeature.aspx.
I just found .SaveTabOrderAsXml and .SaveTabOrderAsBinary. This appears to be what I was looking for.