次の方法で共有


Excel.ErrorCellValueType enum

ErrorCellValue オブジェクトの型を表します。

注釈

[ API セット: ExcelApi 1.16 ]

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/20-data-types/data-types-error-values.yaml

// This function sets the value of cell A1 to a #BUSY! error using data types.
await Excel.run(async (context) => {
  // Retrieve the Sample worksheet and cell A1 on that sheet.
  const sheet = context.workbook.worksheets.getItemOrNullObject("Sample");
  const range = sheet.getRange("A1");

  // Get the error data type and set its type to `busy`.
  const error: Excel.ErrorCellValue = {
    type: Excel.CellValueType.error,
    errorType: Excel.ErrorCellValueType.busy
  };

  // Set cell A1 as the busy error.
  range.valuesAsJson = [[error]];
  await context.sync();
});

フィールド

blocked = "Blocked"

BlockedErrorCellValue を表します。

busy = "Busy"

BusyErrorCellValue を表します。

calc = "Calc"

CalcErrorCellValue を表します。

connect = "Connect"

ConnectErrorCellValue を表します。

div0 = "Div0"

Div0ErrorCellValue を表します。

external = "External"

ExternalErrorCellValue を表します。

field = "Field"

FieldErrorCellValue を表します。

gettingData = "GettingData"

GettingDataErrorCellValue を表します。

name = "Name"

NameErrorCellValue を表します。

notAvailable = "NotAvailable"

NotAvailableErrorCellValue を表します。

null = "Null"

NullErrorCellValue を表します。

num = "Num"

NumErrorCellValue を表します。

placeholder = "Placeholder"

PlaceholderErrorCellValue を表します。

python = "Python"

PythonErrorCellValue を表します。

ref = "Ref"

RefErrorCellValue を表します。

spill = "Spill"

SpillErrorCellValue を表します。

timeout = "Timeout"

TimeoutErrorCellValue を表します。

value = "Value"

ValueErrorCellValue を表します。