Delegate AutoCompleteCustomizeEventHandler
Delegate for handling the AutoCompleteCustomize event. Represents the method signature that will process customization requests raised by the AutoComplete control.
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public delegate void AutoCompleteCustomizeEventHandler(object sender, AutoCompleteCustomizeEventArgs args);
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | sender | |
| AutoCompleteCustomizeEventArgs | args |
Remarks
The AutoCompleteCustomizeEventHandler delegate uses AutoCompleteCustomizeEventArgs as its event data. This event allows developers to intercept and customize the behavior of the AutoComplete control during suggestion generation, enabling application-specific logic, formatting, or filtering of candidate items before they are displayed.
Constructors
AutoCompleteCustomizeEventHandler(Object, IntPtr)
Declaration
public AutoCompleteCustomizeEventHandler(object object, IntPtr method)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | object | |
| System.IntPtr | method |
Methods
BeginInvoke(Object, AutoCompleteCustomizeEventArgs, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(object sender, AutoCompleteCustomizeEventArgs args, AsyncCallback callback, object object)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | sender | |
| AutoCompleteCustomizeEventArgs | args | |
| System.AsyncCallback | callback | |
| System.Object | object |
Returns
| Type |
|---|
| System.IAsyncResult |
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
| Type | Name | Description |
|---|---|---|
| System.IAsyncResult | result |
Invoke(Object, AutoCompleteCustomizeEventArgs)
Declaration
public virtual void Invoke(object sender, AutoCompleteCustomizeEventArgs args)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | sender | |
| AutoCompleteCustomizeEventArgs | args |