跳到主要内容

GetClassType

返回 ApiImage 类的类型。

语法

expression.GetClassType();

expression - 表示 ApiImage 类的变量。

参数

此方法没有任何参数。

返回值

"image"

示例

检查文档中图像返回的类类型。

// How do I check what type an image object is in a document?

// Retrieve and output the class type string for an image in a document.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let drawing = Api.CreateImage(
'https://static.onlyoffice.com/assets/docs/samples/img/onlyoffice_logo.png',
60 * 36000, 60 * 36000
);
paragraph.AddDrawing(drawing);
let classType = drawing.GetClassType();
paragraph = Api.CreateParagraph();
paragraph.AddText('Class Type = ' + classType);
doc.Push(paragraph);