Bewerken

ColumnWidthChangedEventArgs Class

Definition

Provides data for the ColumnWidthChanged event.

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

Examples

The following code example demonstrates the use of this type. In the example, an event handler reports on the occurrence of the ColumnWidthChanged event. This report helps you to learn when the event occurs and can assist you in debugging. To report on multiple events or on events that occur frequently, consider replacing Show with Console.WriteLine or appending the message to a multiline TextBox.

To run the example code, paste it into a project that contains an instance of type ListView named ListView1. Then ensure that the event handler is associated with the ColumnWidthChanged event.

private void ListView1_ColumnWidthChanged(Object sender, ColumnWidthChangedEventArgs e) {

System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "ColumnIndex", e.ColumnIndex );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "ColumnWidthChanged Event" );
}
Private Sub ListView1_ColumnWidthChanged(sender as Object, e as ColumnWidthChangedEventArgs) _ 
     Handles ListView1.ColumnWidthChanged

    Dim messageBoxVB as New System.Text.StringBuilder()
    messageBoxVB.AppendFormat("{0} = {1}", "ColumnIndex", e.ColumnIndex)
    messageBoxVB.AppendLine()
    MessageBox.Show(messageBoxVB.ToString(),"ColumnWidthChanged Event")

End Sub

Constructors

Name Description
ColumnWidthChangedEventArgs(Int32)

Initializes a new instance of the ColumnWidthChangedEventArgs class.

Properties

Name Description
ColumnIndex

Gets the column index for the column whose width is being changed.

Applies to