[Gambas-user] GridView Row Height

Benoît Minisini g4mba5 at gmail.com
Tue Feb 16 19:57:57 CET 2021


Le 16/02/2021 à 19:21, T Lee Davidson a écrit :
> On 2/15/21 1:11 PM, KKing wrote:
>>> gridview1.header = 3
>>
>> Thankyou @Gianluigi that works ... even if I prefer
>>        GridView1.Header = GridView.Both
>>
>> Would be cool if GridView worked like excel/calc where clicking the 
>> top left of the grid view auto selects all rows and columns and 
>> adjusting the row height of one row adjusts every row to the new 
>> height. Something to look at another day.
> 
> I could be wrong, but I believe columns cannot be selected. Just select 
> all rows. For example:
> [code]
> Public Sub GridView1_DblClick()
> 
>    If Mouse.X < 20 And If Mouse.Y < 28 Then GridView1.SelectAll
> 
> End
> [/code]
> 

Yes, in GridView rows and columns are not symmetrical like in a spreadsheet.

GridView displays "tables" (like database tables) where rows represent 
similar "objects", and each column one field of these "objects".

Regards,

-- 
Benoît Minisini


More information about the User mailing list