GetHeight
返回当前绘图的高度。
继承自 ApiDrawing.GetHeight。
示例
获取电子表格中绘图对象的高度。
// How to know a height of a drawing in a spreadsheet.
// Get a drawing's height and display it in the worksheet.
let worksheet = Api.GetActiveSheet();
let fill = Api.CreateSolidFill(Api.RGB(255, 111, 61));
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
let drawing = worksheet.AddShape("flowChartOnlineStorage", 60 * 36000, 35 * 36000, fill, stroke, 0, 2 * 36000, 0, 3 * 36000);
drawing.SetSize(120 * 36000, 70 * 36000);
drawing.SetPosition(0, 2 * 36000, 1, 3 * 36000);
let height = drawing.GetHeight();
worksheet.GetRange("A1").SetValue("Drawing height = " + height);