Excel.CellValueType enum

Представляет типы CellValue объекта .

Комментарии

[ Набор 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();
});

Поля

array = "Array"

Представляет объект ArrayCellValue.

boolean = "Boolean"

Представляет объект BooleanCellValue.

double = "Double"

Представляет объект DoubleCellValue.

empty = "Empty"

Представляет объект EmptyCellValue.

entity = "Entity"

Представляет объект EntityCellValue.

error = "Error"

Представляет объект ErrorCellValue.

externalCodeServiceObject = "ExternalCodeServiceObject"

Представляет объект ExternalCodeServiceObjectCellValue.

formattedNumber = "FormattedNumber"

Представляет объект FormattedNumberCellValue.

linkedEntity = "LinkedEntity"

Представляет объект LinkedEntityCellValue.

localImage = "LocalImage"

Представляет объект LocalImageCellValue.

notAvailable = "NotAvailable"

Представляет объект ValueTypeNotAvailableCellValue.

reference = "Reference"

Представляет объект ReferenceCellValue.

string = "String"

Представляет объект StringCellValue.

webImage = "WebImage"

Представляет объект WebImageCellValue.