'Declaration
Public Event ManipulationStarting As EventHandler(Of ZoomManipulationStartingEventArgs)
public event EventHandler<ZoomManipulationStartingEventArgs> ManipulationStarting
Event Data
The event handler receives an argument of type ZoomManipulationStartingEventArgs containing data related to this event. The following ZoomManipulationStartingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Mode | Gets or sets which types of manipulations are possible. |
Position | Gets the point from which the manipulation originated. |
TargetControl | Gets a reference to the control that raised the event. |
Remarks
This event is a routed event. The C1Zoom must have a ManipulationModes other than ManipulationModes.None to be a manipulation event source.
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