GetClassType
返回 ApiShape 类的类型。
语法
expression.GetClassType();
expression - 表示 ApiShape 类的变量。
参数
此方法没有任何参数。
返回值
"shape"
示例
读取形状的类型标签并将其写入电子表格的单元格中。
// How do I find out what type a shape object is in a spreadsheet?
// Confirm the category of a shape by printing its type label to the sheet in a spreadsheet.
let worksheet = Api.GetActiveSheet();
let fill = Api.CreateSolidFill(Api.RGB(255, 111, 61));
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
let shape = worksheet.AddShape("flowChartOnlineStorage", 60 * 36000, 35 * 36000, fill, stroke, 0, 2 * 36000, 2, 3 * 36000);
let classType = shape.GetClassType();
worksheet.SetColumnWidth(0, 15);
worksheet.SetColumnWidth(1, 10);
worksheet.GetRange("A1").SetValue("Class Type = ");
worksheet.GetRange("B1").SetValue(classType);