ReoGrid provides a flexible selection system for managing cell focus, range selection, clipboard operations, and text search. This section covers both user-facing behavior and programmatic control.

Quick Reference

// Get/set the selection range
var range = sheet.SelectionRange;
sheet.SelectionRange = new RangePosition("A1:D5");

// Get/set the focus cell
var pos = sheet.FocusPos;
sheet.FocusPos = new CellPosition("D5");

// Copy selection to clipboard
sheet.Copy();

// Paste from clipboard
sheet.Paste("A1");

In This Section

  • Focus & Selection — Selection range, focus cell, selection styles, modes, multi-selection, and advanced patterns
  • Pick Range — Let users interactively pick a range (useful for dialogs and tools)
  • Clipboard — Cut, copy, and paste operations with format support
  • Text Search — Find and replace text within a worksheet
Was this article helpful?