Hey there,
Can any body help me please?
How can i set the property of vertical ScrollBar to Ultralistview control?
By default it takes horizontal scrollbar i need only vertical scroll bar so could u please help me how to remove horizontal and how to set vertical scrollbars for the ultralistview property....
Thanks in advance :)
No, the control does not support showing scrollbars for a group. If you like you can submit a feature request the ability to do that.
Hello,
what about the case I have two Groups into the UltraListView and I use the details style. Each group contains a number of UltraListViewItems.
Can I have a vertical scrollbar only in the first group and NOT a vertical scrollbar in the whole UltraListView??
Thanks
The settings for each of the iconic view styles (Icons, Tiles, Thumbnails) exposes an 'Alignment' property, which determines whether the items are laid out from left to right or top to bottom.
Example:this.ultraListView1.ViewSettingsIcons.Alignment = ItemAlignment.TopToBottom;
For the 'List' view, the only way to get a vertical scrollbar is to set the MultiColumn property to false.
If the view type is List then you can set MultiColumn = false
"myList".ViewSettingsList.MultiColumn = false;
The iconic views (UltraListView.View = Icons/Tiles/Thumbnails) expose an 'Alignment' property, which indirectly determines whether a horizontal or vertical scrollbar will appear.
Example:this.ultraListView.ViewSettingsIcons.Alignment = ItemAlignment.LeftToRight;