On 12/9/11 9:52 AM, Nate Lowrie wrote: > I have a grid for order lines. Some order lines have options on them > and each option is an addition line in the field. I would like to be > able to dynamically set the row height for a particular row based on the > number of lines in the description. How can I set the height for a > specific row?
Currently, we don't offer a dabo wrapper for this. You can dip down into wx: grd.SetRowSize(rownum, height) Note that height needs to be >= than grd.GetRowMinimalAcceptableHeight. > I see that there is a property called SameSizeRows that I > can set to false, but I am not sure how to programatically set that > specific row. Also, if I have different sized rows, is the value of > RowHeight now invalid? RowHeight will be the default height in that case. Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
