MindFusion.UI for WebForms Programmer's Guide

ValueChangedEventArgs(T) Constructor

See Also
 





Initializes a new instance of the ValueChangedEventArgs class.

Namespace: MindFusion.UI.Web
Assembly: MindFusion.UI.Web

 Syntax

C#  Copy Code

public ValueChangedEventArgs<T> (
    T oldValue,
    T newValue
)

Visual Basic  Copy Code

Public New (Of T) ( _
    oldValue As T, _
    newValue As T _
)

 Parameters

oldValue

Type: T
the old value.

newValue

Type: T
the new value.

 See Also