Class AutoCompleteCustomizeEventArgs
This class wraps an exception that is thrown by the system as event data.
Inheritance
System.Object
System.EventArgs
AutoCompleteCustomizeEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class AutoCompleteCustomizeEventArgs : EventArgs
Remarks
The event data can be used to track the problem with the exception that was raised by the system during the auto completion of the AutoComplete control.
Constructors
AutoCompleteCustomizeEventArgs(String, Point, Control)
Declaration
public AutoCompleteCustomizeEventArgs(string textForAutoCompletion, Point autoSuggestLocation, Control activeFocusControl)
Parameters
Type | Name | Description |
---|---|---|
System.String | textForAutoCompletion | |
System.Drawing.Point | autoSuggestLocation | |
System.Windows.Forms.Control | activeFocusControl |
Properties
ActiveFocusControl
Gets or sets the active control on the AutoComplete control.
Declaration
public Control ActiveFocusControl { get; set; }
Property Value
Type |
---|
System.Windows.Forms.Control |
AutoSuggestLocation
Gets /sets values that determine the position of AutoCompletion.
Declaration
public Point AutoSuggestLocation { get; set; }
Property Value
Type |
---|
System.Drawing.Point |
Cancel
Gets or sets a value indicating whether the AutoCompleteCustomize event should be canceled
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
Handled
Gets or sets a value indicating whether this AutoCompleteCustomizeEventArgs is handled.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
TextForAutoCompletion
Gets/sets the text for AutoCompletion
Declaration
public string TextForAutoCompletion { get; set; }
Property Value
Type |
---|
System.String |