[]
        
(Showing Draft Content)

C1.Blazor.Grid.FlexGrid.StartEditingAsync

StartEditingAsync Method

StartEditingAsync(int, int, bool, bool, bool)

Starts the editing of the specified cell asynchronously.

Declaration
public Task<bool> StartEditingAsync(int row, int col, bool fullEdit = true, bool focus = true, bool disableAnimation = false)
Parameters
Type Name Description
int row

The row index.

int col

The column index.

bool fullEdit

Whether to stay in edit mode when the user presses

bool focus

Whether to set the focus and select the text in the editor.

bool disableAnimation

if set to true disable scrolling animations.

Returns
Type Description
Task<bool>

true if the editing started.

StartEditingAsync(GridRow, GridColumn, bool, bool, bool)

Starts the editing of the specified cell asynchronously.

Declaration
public Task<bool> StartEditingAsync(GridRow row, GridColumn col, bool fullEdit = true, bool focus = true, bool disableAnimation = false)
Parameters
Type Name Description
GridRow row

The row index.

GridColumn col

The column index.

bool fullEdit

Whether to stay in edit mode when the user presses

bool focus

Whether to set the focus and select the text in the editor.

bool disableAnimation

if set to true disable scrolling animations.

Returns
Type Description
Task<bool>

true if the editing started.