import { arrayInputBox } from "lib/Array.cms"; deleteRows = true; executeSaveAs = true; array = arrayInputBox("抽出する語句を改行区切りで入力してください。"); for (y = Bottom; y >= 1; y--) { found = false; for (x = 1; x <= Right && !found; x++) { if (array.includes([x,y])) { found = true; } } if (!found) { if (deleteRows) { DeleteRow(y); } else { SetRowHeight(y, 0); } } } if (executeSaveAs) { SaveAs(); }