Returns a type of the ApiImage class.
This method doesn't have any parameters.
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oParagraph = oDocument.GetElement(0); var oDrawing = Api.CreateImage("https://api.onlyoffice.com/content/img/docbuilder/examples/coordinate_aspects.png", 60 * 36000, 35 * 36000); oParagraph.AddDrawing(oDrawing); var sClassType = oDrawing.GetClassType(); oParagraph = Api.CreateParagraph(); oParagraph.AddText("Class Type = " + sClassType); oDocument.Push(oParagraph); builder.SaveFile("docx", "GetClassType.docx"); builder.CloseFile();