BlazorDatasheet
BlazorDatasheet copied to clipboard
Active cell
Hi Is there any event that will get the active cell?
You could use:
Sheet.Selection.SelectionChanged += (sender, args) => {
var selection = (Selection)sender!;
var position = selection.ActiveCellPosition;
}