WinForms

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class AutoCompleteCustomizeEventArgs

    Show / Hide Table of Contents

    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.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    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 Description
    System.Windows.Forms.Control

    AutoSuggestLocation

    Gets /sets values that determine the position of AutoCompletion.

    Declaration
    public Point AutoSuggestLocation { get; set; }
    Property Value
    Type Description
    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 Description
    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

    true if handled; otherwise, false.

    TextForAutoCompletion

    Gets/sets the text for AutoCompletion

    Declaration
    public string TextForAutoCompletion { get; set; }
    Property Value
    Type Description
    System.String
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved