Code: Select all
if not EDITOR.CanChange or
not EDITOR.GetCurrentItemEx(TRVTableItemInfo, rve, item) then exit;
table := TRVTableItemInfo(item);
if table.GetEditedCell(r,c)<>nil then
begin
table.Cells[r,c].SelectAll;
Caption := 'Cell: ' + inttostr(r) + ', ' + inttostr(c);
end;