New to Telerik UI for WPFStart a free 30-day trial

Encapsulates data related to diagram zoom events.

Definition

Namespace:Telerik.Windows.Controls.Diagrams

Assembly:Telerik.Windows.Controls.Diagrams.dll

Syntax:

C#
public class DiagramZoomEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsDiagramZoomEventArgs

Properties

Gets whether a zoom animation is currently running.

C#
public bool IsAnimationRunning { get; }

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.

C#
public double TargetZoom { get; set; }

Gets the old zoom value.

C#
public double Zoom { get; }

Gets the zoom point.

C#
public Point ZoomPoint { get; }