GetClassType
返回 ApiImage 类的类型。
语法
expression.GetClassType();
expression - 表示 ApiImage 类的变量。
参数
此方法没有任何参数。
返回值
"image"
示例
此示例获取类类型并将其插入到文档中。
// How to get a class type of ApiImage.
// Get a class type of ApiImage and display it in the worksheet.
let worksheet = Api.GetActiveSheet();
let image = worksheet.AddImage(
'https://static.onlyoffice.com/assets/docs/samples/img/onlyoffice_logo.png',
60 * 36000, 60 * 36000,
0, 2 * 36000, 2, 3 * 36000
);
let classType = image.GetClassType();
worksheet.SetColumnWidth(0, 15);
worksheet.SetColumnWidth(1, 10);
worksheet.GetRange('A1').SetValue('Class Type = ');
worksheet.GetRange('B1').SetValue(classType);