ListViewArray.Resize Event

Definition

Occurs when the control is resized.

public:
 event EventHandler ^ Resize;
public event EventHandler Resize;
member this.Resize : EventHandler 
Public Custom Event Resize As EventHandler 
Public Event Resize As EventHandler 

Event Type

Remarks

To determine the Size of the resized control, you can cast the sender parameter of the EventArgs data to a Control and get its Size property (or Height and Width properties individually).

To handle custom layouts, use the Layout event instead of the Resize event. The Layout event is raised in response to a Resize event, but also in response to other changes that affect the layout of the control.

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

Note

Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.

Applies to

See also