Class DiagramZoomEventArgs
Encapsulates data related to diagram zoom events.
Inherited Members
Namespace: Telerik.Windows.Controls.Diagrams
Assembly: Telerik.Windows.Controls.Diagrams.dll
Syntax
public class DiagramZoomEventArgs : RadRoutedEventArgs
Properties
IsAnimationRunning
Gets whether a zoom animation is currently running.
Declaration
public bool IsAnimationRunning { get; }
Property Value
System.Boolean
|
TargetZoom
Gets or sets the result zoom. By default this property contains the coerced new zoom. If custom value is set it will be coerced before being set as a value to the zoom.
Declaration
public double TargetZoom { get; set; }
Property Value
System.Double
|
Zoom
Gets the old zoom value.
Declaration
public double Zoom { get; }
Property Value
System.Double
|
ZoomPoint
Gets the zoom point.
Declaration
public Point ZoomPoint { get; }
Property Value
System.Windows.Point
|