次の方法で共有


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 を表します。