Skip to content

Events / ZoomEventArgs

Namespace: Nodify.Events

Assembly: Nodify

Inheritance: ObjectEventArgsRoutedEventArgsZoomEventArgs

References: Minimap, ZoomEventHandler

Provides data for Minimap.Zoom routed event.

public class ZoomEventArgs : RoutedEventArgs

Initializes a new instance of the ZoomEventArgs class using the specified ZoomEventArgs.Zoom and ZoomEventArgs.Location.

public ZoomEventArgs(double zoom, Point location);

Parameters

zoom Double

location Point

Gets the location where the editor should zoom in.

public Point Location { get; set; }

Property Value

Point

Gets the zoom amount.

public double Zoom { get; set; }

Property Value

Double

protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget);

Parameters

genericHandler Delegate

genericTarget Object