Skip to content

Nodify_Events_ResizeEventArgs

miroiu edited this page Dec 23, 2024 · 1 revision

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

Clone this wiki locally