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 :)
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;
If the view type is List then you can set MultiColumn = false
"myList".ViewSettingsList.MultiColumn = false;