跳到主要内容

GetClassType

Returns a type of the ApiCustomXmlParts class.

Syntax

expression.GetClassType();

expression - A variable that represents a ApiCustomXmlParts class.

Parameters

This method doesn't have any parameters.

Returns

"customXmlParts"

Example

This example shows how to get the class type of the custom XML parts manager.

let doc = Api.GetDocument();
let xmlManager = doc.GetCustomXmlParts();
let classType = xmlManager.GetClassType();
let infoParagraph = Api.CreateParagraph();
infoParagraph.AddText("Class type: " + classType);
doc.Push(infoParagraph);