DataGridViewAutoSizeColumnModeEventArgs Class

Definition

Provides data for the AutoSizeColumnModeChanged event.

public ref class DataGridViewAutoSizeColumnModeEventArgs : EventArgs
public class DataGridViewAutoSizeColumnModeEventArgs : EventArgs
type DataGridViewAutoSizeColumnModeEventArgs = class
    inherit EventArgs
Public Class DataGridViewAutoSizeColumnModeEventArgs
Inherits EventArgs
Inheritance
DataGridViewAutoSizeColumnModeEventArgs

Examples

The following code example illustrates the use of this type. This example is part of a larger example available in How to: Manipulate Columns in the Windows Forms DataGridView Control.

// Updated the criteria label.
void dataGridView_AutoSizeColumnModeChanged( Object^ /*sender*/, DataGridViewAutoSizeColumnModeEventArgs^ args )
{
   args->Column->DataGridView->Parent->Controls[ L"flowlayoutpanel" ]->Controls[ criteriaLabel ]->Text = String::Concat( criteriaLabel, args->Column->AutoSizeMode );
}
// Updated the criteria label.
private void dataGridView_AutoSizeColumnModeChanged(object sender,
    DataGridViewAutoSizeColumnModeEventArgs args)
{
    args.Column.DataGridView.Parent.
        Controls["flowlayoutpanel"].Controls[criteriaLabel].
        Text = criteriaLabel
        + args.Column.AutoSizeMode.ToString();
}
' Updated the criteria label.
Private Sub dataGridView_AutoSizeColumnCriteriaChanged( _
    ByVal sender As Object, _
    ByVal args As DataGridViewAutoSizeColumnModeEventArgs) _
    Handles DataGridView.AutoSizeColumnModeChanged

    args.Column.DataGridView.Parent. _
    Controls("flowlayoutpanel"). _
    Controls(criteriaLabel).Text = _
        criteriaLabel & args.Column.AutoSizeMode.ToString
End Sub

Remarks

The AutoSizeColumnModeChanged event is raised when the value of the AutoSizeMode property of a column in a DataGridView control changes.

For more information about how to handle events, see Handling and Raising Events.

Constructors

DataGridViewAutoSizeColumnModeEventArgs(DataGridViewColumn, DataGridViewAutoSizeColumnMode)

Initializes a new instance of the DataGridViewAutoSizeColumnModeEventArgs class.

Properties

Column

Gets the column with the AutoSizeMode property that changed.

PreviousMode

Gets the previous value of the AutoSizeMode property of the column.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also