Excel.SortOrientation enum
Comentarios
[ Conjunto de API: ExcelApi 1.2 ]
Ejemplos
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/30-events/event-column-and-row-sort.yaml
async function sortLeftToRight(criteria: string) {
await Excel.run(async (context) => {
const sheet = context.workbook.worksheets.getActiveWorksheet();
const range = sheet.getRange("A1:E5");
// Find the row header that provides the sort criteria.
const header = range.find(criteria, {});
header.load("rowIndex");
await context.sync();
range.sort.apply(
[
{
key: header.rowIndex,
sortOn: Excel.SortOn.value
}
],
false /*matchCase*/,
true /*hasHeaders*/,
Excel.SortOrientation.columns
);
await context.sync();
});
}
Campos
columns = "Columns" | |
rows = "Rows" |
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.