[]
        
(Showing Draft Content)

GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType.AutoCompleteSource

AutoCompleteSource Property

AutoCompleteSource

Gets or sets the source for strings used for automatic completion.

Declaration
public AutoCompleteSource AutoCompleteSource { get; set; }
Public Property AutoCompleteSource As AutoCompleteSource
Property Value
Type Description
AutoCompleteSource

One of the values of AutoCompleteSource. 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 GrapeCity.Win.Spread.InputMan.CellType.GcComboBox 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 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.