ciao a tutti, devo creare un documento in pdf,
ho trovato asppdf di aruba che mi sembra ottimo, ci sono molti script di esempio ma in nessuno sono riuscito a trovare come dare l'altezza a una cella di una tabella,
posto la parte di script che mi interessa,
-----------------------------------------------------
Set HeaderRow = Table.Rows(1)
Param.Set("alignment=center")
With HeaderRow
.BGColor = &H90F0FE
.Cells(1).AddText "Category", Param
.Cells(2).AddText "Description", Param
.Cells(3).AddText "Billable", Param
.Cells(4).AddText "Date", Param
.Cells(5).AddText "Amount", Param
End With

' Set column widths
With Table.Rows(1)
.Cells(1).Width=100
.Cells(2).Width=100
.Cells(3).Width=100
.Cells(4).Width=110
.Cells(5).Width=200
End With
------------------------------------------------------
in questo punto vendono impostati i testi delle celle e la larghezza però dovrei impostare l'altezza della cella e non sò come fare.