FdcGridRangeSelectionPasteUpdate typedef

FdcGridRangeSelectionPasteUpdate = ({int columnIndex, int rowIndex, Object? value})

One validated cell assignment produced by a range-paste operation.

rowIndex and columnIndex are zero-based data-row and source-column indexes. value is the parsed value to write and may legitimately be null. Extension sessions produce these records; the grid runtime consumes them when applying the paste plan.

This typedef is part of the stable fdc_ext.dart extension seam.

Implementation

typedef FdcGridRangeSelectionPasteUpdate = ({
  int rowIndex,
  int columnIndex,
  Object? value,
});