ExcelScript.DataValidationPrompt interface

表示数据验证的用户提示属性。

注解

示例

/**
 * This script creates a text prompt that's shown in C2:C8 when a user enters the cell.
 */
function main(workbook: ExcelScript.Workbook) {
    // Get the data validation object for C2:C8 in the current worksheet.
    let selectedSheet = workbook.getActiveWorksheet();
    let dataValidation = selectedSheet.getRange("C2:C8").getDataValidation();

    // Clear any previous validation to avoid conflicts.
    dataValidation.clear();

    // Create a prompt to remind users to only enter first names in this column.
    const prompt: ExcelScript.DataValidationPrompt = {
      showPrompt: true,
      title: "First names only",
      message: "Only enter the first name of the employee, not the full name."
    }
    dataValidation.setPrompt(prompt);
}    

属性

message

指定提示的消息。

showPrompt

指定当用户选择具有数据验证的单元格时是否显示提示。

title

指定提示的标题。

属性详细信息

message

指定提示的消息。

message: string;

属性值

string

showPrompt

指定当用户选择具有数据验证的单元格时是否显示提示。

showPrompt: boolean;

属性值

boolean

title

指定提示的标题。

title: string;

属性值

string