setSelectionMode method
Set the selection mode (free, by-row, by-column, listbox).
Implementation
Future<void> setSelectionMode(SelectionMode mode) async {
await _configure(
GridConfig()..selection = (SelectionConfig()..mode = mode));
}
Set the selection mode (free, by-row, by-column, listbox).
Future<void> setSelectionMode(SelectionMode mode) async {
await _configure(
GridConfig()..selection = (SelectionConfig()..mode = mode));
}