Restoring column si...
 
Notifications
Clear all

Restoring column sizes

2 Posts
2 Users
0 Likes
6,678 Views
0
Topic starter

I am attempting to restore the column sizes for a DataView. I save the column sizes on the Close event, and I try to restore the column sizes after I setup the columns. I have tried both the Column(x).ActualWidth and Column.ScaledWidth properties, but the grid always shows as the default width. I do have it set to allow user resize. What do I need to do?

Topic Tags
1 Answer
0

Column(x).ActualWidth and Column(x).ScaledWidth are both intended to be used for calculating the location of the column boundaries at runtime.

You can restore either Column(x).WidthExpression or aDataView.ColumnWidths

ColumnWidths will return a concatenated string of all Column WidthExpressions and can be set again if the same columns and order will be restored. Otherwise, use the individual WidthExpression values.

The values can be different from what was set in the initial values if the user has resized or moved the columns.

alindsay Topic starter February 17, 2019 10:11 am

Using the Column(x).WidthExpression works as I expected.

Thank you.