ExcelScript.ShapeAutoSize enum
Determina el tipo de ajuste automático de tamaño permitido.
Comentarios
Ejemplos
/**
* This script creates a star shape with the value from cell A1.
*/
function main(workbook: ExcelScript.Workbook) {
// Get the value of A1 from the worksheet named Sheet1.
const sheet = workbook.getWorksheet("Sheet1");
const value = sheet.getRange("A1").getValue();
// Create a Shape object that looks like a 5-pointed star.
const star = sheet.addGeometricShape(ExcelScript.GeometricShapeType.star5);
// Set the text of star and make sure the shape fits the text.
const textFrame = star.getTextFrame();
textFrame.getTextRange().setText(value.toString());
textFrame.setAutoSizeSetting(ExcelScript.ShapeAutoSize.autoSizeShapeToFitText);
}
Campos
autoSizeMixed | Se utiliza una combinación de esquemas de tamaño automático. |
autoSizeNone | Sin tamaño automático. |
autoSizeShapeToFitText | La forma se ajusta al texto. |
autoSizeTextToFitShape | El texto se ajusta a la forma. |
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.