BlazorDatasheet icon indicating copy to clipboard operation
BlazorDatasheet copied to clipboard

Active cell

Open TasosSarris opened this issue 1 year ago • 1 comments

Hi Is there any event that will get the active cell?

TasosSarris avatar Aug 17 '24 05:08 TasosSarris

You could use:

Sheet.Selection.SelectionChanged += (sender, args) => {
            var selection = (Selection)sender!;
            var position = selection.ActiveCellPosition;
 }

anmcgrath avatar Aug 18 '24 01:08 anmcgrath