くら
GASでスプレッドシートの入力規則を取得する方法を紹介します!
入力規則を取得:getDataValidation()
入力規則のクラスを取得します。入力規則がない場合はnullを返します。
パラメータ
名前 | タイプ | 説明 |
---|---|---|
なし | なし | なし |
戻り値
DataValidation | 入力規則情報 |
説明
function myFunction() {
const sheet = SpreadsheetApp.getActiveSheet();
const ss = SpreadsheetApp.getActiveSpreadsheet();
const range = ss.getSheetByName("サンプルA").getRange("D3");
/* 患者_居住地の入力規則について、ヘルプテキストを取得*/
const helpText = range.getDataValidation().getHelpText();
console.log(helpText);
}
患者_居住地の入力規則について、ヘルプテキストを取得してみます。
ログにヘルプテキストの内容が出力されます!
公式ドキュメント:Range > getDataValidation()
まとめ
くら
スプレッドシートの入力規則を取得する方法でした!
コメント