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

2.0 KiB

ResizeEventArgs Class

Namespace: Nodify.Events

Assembly: Nodify

Inheritance: ObjectEventArgsRoutedEventArgsResizeEventArgs

References: ResizeEventHandler

Provides data for resize related routed events.

public class ResizeEventArgs : RoutedEventArgs  

Constructors

ResizeEventArgs(Size, Size)

Initializes a new instance of the ResizeEventArgs class with the previous and the new Size.

public ResizeEventArgs(Size previousSize, Size newSize);  

Parameters

previousSize Size: The previous size associated with this event.

newSize Size: The new size associated with this event.

Properties

NewSize

Gets the new size of the object.

public Size NewSize { get; set; }  

Property Value

Size

PreviousSize

Gets the previous size of the object.

public Size PreviousSize { get; set; }  

Property Value

Size

Methods

InvokeEventHandler(Delegate, Object)

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

Parameters

genericHandler Delegate

genericTarget Object