GetClassType
返回 ApiShape 类的类型。
语法
expression.GetClassType();
expression - 表示 ApiShape 类的变量。
参数
此方法没有任何参数。
返回值
"shape"
示例
获取电子表格中形状的类类型。
// How to identify the class type of a shape in a spreadsheet?
// Obtain the class type identifier of a shape object 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);