Called on an editable combobox, providing an opportunity to perform some work when text changes.

Namespace:  ESRI.ArcGISExplorer.Application

Assembly:  ESRI.ArcGISExplorer.Application (in ESRI.ArcGISExplorer.Application.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public virtual void OnTextChange(
	string text
)
Visual Basic (Declaration)
Public Overridable Sub OnTextChange ( _
	text As String _
)

Parameters

text
Type: System..::.String

Remarks

The OnTextChange method is called on an editable ComboBox when text has changed, for example when the a ComboBox lists a predetermined set of values but on occasion alternate values are needed and typed in. This provides an opportunity to run some code within your customization.

See Also