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
Retrieve the class type of a custom XML parts in a document.
// How to identify the class type of a custom XML parts in a document?
// Obtain the class type identifier of a custom XML parts object in a document.
let doc = Api.GetDocument();
let xmlManager = doc.GetCustomXmlParts();
let classType = xmlManager.GetClassType();
let infoParagraph = Api.CreateParagraph();
infoParagraph.AddText("Class type: " + classType);
doc.Push(infoParagraph);