Skip to main content

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 spreadsheet.

// How to identify the class type of a custom XML parts in a spreadsheet?

// Obtain the class type identifier of a custom XML parts object in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let xmlManager = worksheet.GetCustomXmlParts();
let classType = xmlManager.GetClassType();
worksheet.GetRange("A1").SetValue("XML manager class type: " + classType);