Hi
I have an application that displays organisation addresses in tabs. Some organisation have only one address however some have many addresses that span several countries. I would like to display 2 line of text as the tab caption. For example say I have an address in London, I would like the tab caption to be as follows
100 Clive Street London
Is this possible or is the tab caption limited to only one line of text i.e. 100 Clive Street, London?
Any help greatly appreciated.
Regards
James O'DohertySolution and Database ArchitectLandesbank Berlin AGLondon
Hello James,
It's currently not possible to have multiple lines of text in a tab header. I would recommend submitting this as a Feature Request using the following link.
https://ko.infragistics.com/my-account/feature-request/
Hi Dave
Many thanks for your answer. I have made the feature request as suggested.
James
I just tested what Danko suggested, and it will do what you want.
Hello Winsql,
What you could currently to achieve what you are looking for is something like that:
ultraTabControl1.Tabs[0].Text = "100 Clive Street " + Environment.NewLine + " London";
Please feel free to let me know if you have any other questions on this matter.