Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcTextBox Class / AutoCompleteSource Property


In This Topic
    AutoCompleteSource Property (GcTextBox)
    In This Topic
    Gets or sets a value that specifies the source of complete strings used for automatic completion.
    Syntax
    'Declaration
     
    
    Public Property AutoCompleteSource As AutoCompleteSource
    'Usage
     
    
    Dim instance As GcTextBox
    Dim value As AutoCompleteSource
     
    instance.AutoCompleteSource = value
     
    value = instance.AutoCompleteSource
    public AutoCompleteSource AutoCompleteSource {get; set;}

    Property Value

    One of the System.Windows.Forms.AutoCompleteSource values. The options are AllSystemSources, AllUrl, FileSystem, HistoryList, RecentlyUsedList, CustomSource, and None.
    The default is None.
    Remarks

    Use the AutoCompleteCustomSource, AutoCompleteMode, and AutoCompleteSource properties to create a GcTextBox that automatically completes input strings by comparing the prefix being entered to the prefixes of all strings in a maintained source. This is useful for GcTextBox controls in which URLs, addresses, file names, or commands are frequently entered.

    The use of the AutoCompleteCustomSource property is optional, but you must set the AutoCompleteSource property to CustomSource in order to use AutoCompleteCustomSource.

    You must use the AutoCompleteMode and AutoCompleteSource properties together.

    See Also