'Declaration
Public Event ControlAutoShowing As EventHandler(Of ControlAutoShowingEventArgs)
public event EventHandler<ControlAutoShowingEventArgs> ControlAutoShowing
Event Data
The event handler receives an argument of type ControlAutoShowingEventArgs containing data related to this event. The following ControlAutoShowingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets a value indicating whether this GcZoom.ControlAutoShowing event is canceled. |
ShowingControl | Gets the target control which is preparing to show. |
ShowingReason | Get a value indicating control auto scroll reason. |
Example
The following code example shows how to use this event.
This code example is part of a larger example provided for the ZoomFactorChanged event.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also