Compartilhar via


Excel.ErrorCellValueType enum

Representa os tipos do ErrorCellValue objeto.

Comentários

[ Conjunto de API: ExcelApi 1.16 ]

Exemplos

// 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();
});

Campos

blocked = "Blocked"

Representa um BlockedErrorCellValue.

busy = "Busy"

Representa um BusyErrorCellValue.

calc = "Calc"

Representa um CalcErrorCellValue.

connect = "Connect"

Representa um ConnectErrorCellValue.

div0 = "Div0"

Representa um Div0ErrorCellValue.

external = "External"

Representa um ExternalErrorCellValue.

field = "Field"

Representa um FieldErrorCellValue.

gettingData = "GettingData"

Representa um GettingDataErrorCellValue.

name = "Name"

Representa um NameErrorCellValue.

notAvailable = "NotAvailable"

Representa um NotAvailableErrorCellValue.

null = "Null"

Representa um NullErrorCellValue.

num = "Num"

Representa um NumErrorCellValue.

placeholder = "Placeholder"

Representa um PlaceholderErrorCellValue.

python = "Python"

Representa um PythonErrorCellValue.

ref = "Ref"

Representa um RefErrorCellValue.

spill = "Spill"

Representa um SpillErrorCellValue.

timeout = "Timeout"

Representa um TimeoutErrorCellValue.

value = "Value"

Representa um ValueErrorCellValue.