Example: Select method

This example selects the range (A101:B102).

  Range range = sheet.range("A1:B2");
  range.setText("copy");
  range.select();

Related information

select method