Excel.CellValueType enum
Representa os tipos do CellValue
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
array = "Array" | Representa um |
boolean = "Boolean" | Representa um |
double = "Double" | Representa um |
empty = "Empty" | Representa um |
entity = "Entity" | Representa um |
error = "Error" | Representa um |
externalCodeServiceObject = "ExternalCodeServiceObject" | Representa um |
formattedNumber = "FormattedNumber" | Representa um |
linkedEntity = "LinkedEntity" | Representa um |
localImage = "LocalImage" | Representa um |
notAvailable = "NotAvailable" | Representa um |
reference = "Reference" | Representa um |
string = "String" | Representa um |
webImage = "WebImage" | Representa um |
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.