TextChanged Event
See Also 
SourceCode.Workflow.WizardFramework.Controls Namespace > SimpleTagControl Class : TextChanged Event



Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Event TextChanged As TextChangedEventHandler
Visual Basic (Usage) Copy Code
Dim instance As SimpleTagControl
Dim handler As TextChangedEventHandler
 
AddHandler instance.TextChanged, handler
C#  
public event TextChangedEventHandler TextChanged
C++/CLI  
public:
event TextChangedEventHandler^ TextChanged

Event Data

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

Property Description
Changes Gets a collection of objects that contains information about the changes that occurred.
Handled (Inherited from System.Windows.RoutedEventArgs)  
OriginalSource (Inherited from System.Windows.RoutedEventArgs)  
RoutedEvent (Inherited from System.Windows.RoutedEventArgs)  
Source (Inherited from System.Windows.RoutedEventArgs)  
UndoAction Gets how the undo stack is caused or affected by this text change

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