gridview header height
Posted
#1
(In Topic #195)
Regular

Posted
Regular

Posted
Guru

<IMG src="http://cogier.com/gambas/Gridview%20header%20height.jpg">
</IMG>Try the following code: -
Code (gambas)
- .Width = 900
- .Height = 200
- .Padding = 5
- .Arrangement = Arrange.Vertical
- .Text = "Gridview header height"
- With GridView1
- .Columns.Count = 5
- .Rows.Count = 5
- GridView1.Columns[siCount].Title = sText[siCount]
- GridView1.Columns[siCount].Alignment = Align.Center
- GridView1.Rows[siLoop].Height = 20
- GridView1[siLoop, siCount].Text = sText[siCount]
Is there a way to determine the height of the header in gridview?
If you add the following see line 25 above: -
Code (gambas)
Posted
Regular

Thank you so much, I think this may be the only solution but such a complex solution to a simple matter
Regards
1 guest and 0 members have just viewed this.


