I have a Ultra List View being hosted as a container control in the UltraExplorerBarGroup control. I have the style set to Icons.
It displays my icons and text below it but not much text displays. Is there any way to make it show more text or allow it to wrap and be multi line of text under the icon?
Hristo,
Thanks for your help. The sample worked perfectly for my needs with almost no modification. Have A great day!
lt
Hello,
What you could do is to use IUIElementCreationFilter in order to set Wrap and MuliLine properties of EditorWithTextDisplayTextUIElement to true. Also you should manage ImageSize property of ViewSettingsList in order to provide enough room for the text to be distributed on two or more lines, and the longer text must be in the first line or you should managed the width of the main column. I’ve implemented this in a small demonstrative sample, please feel free to modify it based on your custom needs.
Thank you for using Infragistics Components.
Is there a way to achieve multiple lines/word wrap with the ultralistview in list mode(not icons)?
Thanks,
Rk
Thanks for the information. That worked perfectly. There are so many options with these controls that it is sometimes hard to figure out easy stuff.
Thanks
I believe that you would be able to use the following property which determine the number of text lines under your icon:
this.ultraListView1.ViewSettingsIcons.MaxLines = 5;