Partager via


Excel.CellValueType enum

Représente les types de l’objet CellValue .

Remarques

[ Ensemble d’API : ExcelApi 1.16 ]

Exemples

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

Champs

array = "Array"

Représente un ArrayCellValue.

boolean = "Boolean"

Représente un BooleanCellValue.

double = "Double"

Représente un DoubleCellValue.

empty = "Empty"

Représente un EmptyCellValue.

entity = "Entity"

Représente un EntityCellValue.

error = "Error"

Représente un ErrorCellValue.

externalCodeServiceObject = "ExternalCodeServiceObject"

Représente un ExternalCodeServiceObjectCellValue.

formattedNumber = "FormattedNumber"

Représente un FormattedNumberCellValue.

linkedEntity = "LinkedEntity"

Représente un LinkedEntityCellValue.

localImage = "LocalImage"

Représente un LocalImageCellValue.

notAvailable = "NotAvailable"

Représente un ValueTypeNotAvailableCellValue.

reference = "Reference"

Représente un ReferenceCellValue.

string = "String"

Représente un StringCellValue.

webImage = "WebImage"

Représente un WebImageCellValue.