Skip to content

Nodify_Events_ZoomEventArgs

miroiu edited this page Dec 23, 2024 · 1 revision

ZoomEventArgs Class

Namespace: Nodify.Events

Assembly: Nodify

Inheritance: ObjectEventArgsRoutedEventArgsZoomEventArgs

References: Minimap, ZoomEventHandler

Provides data for Minimap.Zoom routed event.

public class ZoomEventArgs : RoutedEventArgs  

Constructors

ZoomEventArgs(Double, Point)

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

Properties

Location

Gets the location where the editor should zoom in.

public Point Location { get; set; }  

Property Value

Point

Zoom

Gets the zoom amount.

public double Zoom { get; set; }  

Property Value

Double

Methods

InvokeEventHandler(Delegate, Object)

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

Parameters

genericHandler Delegate

genericTarget Object

Clone this wiki locally