지정한 여러행들을 삭제 합니다.
여러 행들을 삭제하고 싶은 경우,removeRow
보다는removeRows
를 사용하는 것이 좋습니다.
void removeRow( rows );
Name | Type | Required | Description |
---|---|---|---|
rows | array[object] |
필수 | 삭제하고자 하는 행들 |
none
// 체크된 행들을 제거 합니다.
var rows = sheet.getRowsByChecked("chk");
sheet.removeRows(rows);
product | version | desc |
---|---|---|
core | 8.0.0.7 | 기능 추가 |