hello all,
I got a quick question about the UltraWinGrid.
i have X amount of column in a grid, for this exemple let's say 2.
All i am looking for is the grid to AUTOSIZE each column either with:
the caption if its bigger than its content,
or its content if its caption is smaller.
So basicaly, if col 1 has for caption - Administration, and the content are Letters, i want the grid to autosize the col to the size of "Administration"
and if col 2 has for caption - Items, and the contents are numbers looking like : 3238495843964885934568, i need the col to autosize to the largest number.
Thank you in advance,
John
Hi John,
Call the PerformAutoResize(AllRowsInBand) method on each column. A good place to do this is in the InitializeLayout event of the grid.
hey mike,
Thx for the response, i will try it right now!