Setting Default Row Height
Hello,
What is the recommended way to set the default height for all rows?
Thanks,
0
-
Hello,
You can set a row default height for the entire application:
Preferences.Grid.RowDefaultHeight = height;
or individually for the grid:
grid.RowAdded += delegate(object sender, GridRowEventArgs e)
{
e.Row.Height = height;
}Best regards,
The Dapfor Team0
Please sign in to leave a comment.
Comments
1 comment