Excel.ShapeTextHorizontalAlignment enum
Especifica la alineación horizontal del marco de texto de una forma.
Comentarios
[ Conjunto de API: ExcelApi 1.9 ]
Ejemplos
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/44-shape/shape-textboxes.yaml
await Excel.run(async (context) => {
const shapes = context.workbook.worksheets.getItem("Shapes").shapes;
const textbox = shapes.getItem("Textbox");
textbox.textFrame.horizontalAlignment = Excel.ShapeTextHorizontalAlignment.center;
await context.sync();
});
Campos
center = "Center" | |
distributed = "Distributed" | |
justify = "Justify" | |
justifyLow = "JustifyLow" | |
left = "Left" | |
right = "Right" | |
thaiDistributed = "ThaiDistributed" |
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.