TagTextBoxEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle the TagAdded or TagRejected or TagRejected or TagSelected events of a TagTextBox control.
- C#
- VB.NET
public delegate void TagTextBoxEventHandler(Object sender, TagTextBoxEventArgs e)
Public Delegate Sub TagTextBoxEventHandler(ByVal sender As [Object], ByVal e As TagTextBoxEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | TagTextBoxEventArgs | A TagTextBoxEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| TagTextBox.TagAdded | Fired when the user adds new tag is added to the control. |
| TagTextBox.TagRemoved | Fired when the user removes a tag from the control. |
| TagTextBox.TagRejected | Fired when the user tries to add a tag that already exists or the maximum number of allowed tags set in MaxTagCount is reached. |
| TagTextBox.TagSelected | Fires when the user selects a tag. |