DataGridTableStyle.PreferredRowHeightChanged Event

Definition

Occurs when the PreferredRowHeight value changes.

C#
public event EventHandler PreferredRowHeightChanged;

Event Type

Examples

The following code example demonstrates the use of this member.

C#
private void SetUp()
{
   // Create a DataSet with a table.
   MakeDataSet();
   // Bind the DataGrid to the DataSet.
   myDataGrid.SetDataBinding(myDataSet, "Orders");
   myTableStyle = new DataGridTableStyle();
   // Map 'DataGridTableStyle' instance to the DataTable.
   myTableStyle.MappingName = "Orders";
   // Add EventHandler function for 'PreferredRowHeightChanged' Event.
   myTableStyle.PreferredRowHeightChanged+=new EventHandler(RowHeight_Changed);
}
// Called when the PreferredRowHeight property of myTableStyle is modified
private void RowHeight_Changed(object sender, EventArgs e)
{
   MessageBox.Show("PreferredRowHeight property is changed");
}

Remarks

For more information about handling events, see Handling and Raising Events.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 10

See also