How do you adjust the height of an UltraListViewItem when its parent UltraListView control is in Details view? (other than by adjusting Font sizes).
Tonic2012,
Unfortunately there is no way to adjust the size of an UltraListViewItem when the UltraListView's View is set to Details. If you'd like, you can submit a feature request for this functionality here.
~Kim~
I know this is a really old post but I thought I'd share how I overcame this problem. I simply used this code:
ulvwXXX.MainColumn.ItemAppearance.Image = My.Resources.Transparent ulvwXXX.ViewSettingsDetails.ImageSize = New System.Drawing.Size(2, 26)
Using a transparent image with a very narrow size allowed no image to be shown. The height of the ImageSize can then be set to get the desired item height.