Files
APIVisualExecutor/docs/api/Nodify_Events_ZoomEventArgs.md
Ankitkumar Satapara 21aaef6776 Add project files.
2026-04-17 22:31:58 +05:30

2.0 KiB

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