PropertyChanging Event
See Also 
SourceCode.Workflow.Design.InfoPath.FormTemplate Namespace > DesignerObject Class : PropertyChanging Event



Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Event PropertyChanging As EventHandler(Of PropertyEventArgs)
Visual Basic (Usage) Copy Code
Dim instance As DesignerObject
Dim handler As EventHandler(Of PropertyEventArgs)
 
AddHandler instance.PropertyChanging, handler
C#  
public event EventHandler<PropertyEventArgs> PropertyChanging
C++/CLI  
public:
event EventHandler<PropertyEventArgs^>^ PropertyChanging

Event Data

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

Property Description
IsDisposed Gets a value indicating if the current object have been disposed yet.
NewValue  
OldValue  
PropertyName  

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