Skip to main content
A newer version of this page is available. .

AutoCompleteItemsProvider.GetAutoCompleteItems(String, Int32) Method

Returns the collection of suggestions corresponding to a specific caret position within an expression.

Namespace: DevExpress.DataAccess.ExpressionEditor

Assembly: DevExpress.DataAccess.v19.2.dll

Declaration

public virtual IEnumerable<AutoCompleteItem> GetAutoCompleteItems(
    string expression,
    int caretPosition
)

Parameters

Name Type Description
expression String

A String value, specifying the expression.

caretPosition Int32

An integer value, specifying the symbol in the expression where the caret position is.

Returns

Type Description
IEnumerable<AutoCompleteItem>

A collection of AutoCompleteItem objects.

See Also