ReoGridは、セルのフォーカス、範囲選択、クリップボード操作、テキスト検索を管理するための柔軟な選択システムを提供しています。このセクションでは、ユーザー向けの動作とプログラムによる制御の両方を説明します。
クイックリファレンス
// 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");