Skip to main content

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.v24.1.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

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