Hi,
I am using ultralist view, how to hide the first column of listview when displaying multi columns. currently the first column is showing just icon and in next columns my data displayed.
following is the view type that i am using with multicolumn = true
UltraListView1.View = Infragistics.Win.UltraWinListView.UltraListViewStyle.Details
Thanks,
To hide the image, you can do the following.
UltraListView1.ViewSettingsDetails.ImageSize = Size.Empty;
Later,
Mike