Nevron .NET Vision
Nevron.UI Namespace / NUINode Class / PropertyChanging Event


In This Topic
    PropertyChanging Event (NUINode)
    In This Topic
    Fired when a command's property is about to be changed. Cancelable.
    Syntax
    'Declaration
     
    
    Public Event PropertyChanging As NPropertyChangingEventHandler
    'Usage
     
    
    Dim instance As NUINode
    Dim handler As NPropertyChangingEventHandler
     
    AddHandler instance.PropertyChanging, handler
    public event NPropertyChangingEventHandler PropertyChanging
    Event Data

    The event handler receives an argument of type NPropertyChangingEventArgs containing data related to this event. The following NPropertyChangingEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets/sets a value whether to cancel the property change.  
    Gets/sets the new value that is about to be be assigned to the property.  
    Gets the name of the property that is changing.  
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also