Skip to main content

Column text wrapping and column resizing

Comments

1 comment

  • Dapfor Team

    Hi Cory,

    Below you will find a code, demonstrating how to do it:

     //Subscribe to column width changes
    grid.ColumnWidthChanged += delegate
    {
        //Adjust each row height in the grid
        foreach (Row row in grid.Rows)
        {
            row.Adjust();
        }
    };

    Best regards,

    The Dapfor Team

    0

Please sign in to leave a comment.

Powered by Zendesk