Excel.CellValueType enum
Representa los tipos del CellValue
objeto .
Comentarios
[ Conjunto de API: ExcelApi 1.16 ]
Ejemplos
// 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
array = "Array" | Representa un objeto |
boolean = "Boolean" | Representa un objeto |
double = "Double" | Representa un objeto |
empty = "Empty" | Representa un objeto |
entity = "Entity" | Representa un objeto |
error = "Error" | Representa un objeto |
externalCodeServiceObject = "ExternalCodeServiceObject" | Representa un objeto |
formattedNumber = "FormattedNumber" | Representa un objeto |
linkedEntity = "LinkedEntity" | Representa un objeto |
localImage = "LocalImage" | Representa un objeto |
notAvailable = "NotAvailable" | Representa un objeto |
reference = "Reference" | Representa un objeto |
string = "String" | Representa un objeto |
webImage = "WebImage" | Representa un objeto |