Class AutoCompleteErrorArgs
This class wraps an exception that is thrown by the system as event data.
Inheritance
System.Object
System.EventArgs
AutoCompleteErrorArgs
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 AutoCompleteErrorArgs : 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
AutoCompleteErrorArgs(Exception)
Initializes a new instance of the class with an exception.
Declaration
public AutoCompleteErrorArgs(Exception error)
Parameters
Type | Name | Description |
---|---|---|
System.Exception | error | The exception that resulted in this event data being created. |
Remarks
The exception that is set through the constructor can be accessed through the GetException() method.
Methods
GetException()
Returns the original exception that was thrown by the system.
Declaration
public Exception GetException()
Returns
Type | Description |
---|---|
System.Exception | The exception that was thrown by the system. |
Remarks
The System.Exception that is returned can be used to track down any issues that occur in the auto completion process of the AutoComplete control.