GetClassType
Returns a type of the ApiRun class.
Syntax
expression.GetClassType();
expression
- A variable that represents a ApiRun class.
Parameters
This method doesn't have any parameters.
Returns
"run"
Example
This example gets a class type and inserts it into the document.
- Code
- Result
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let run = Api.CreateRun();
run.AddText("This is just a sample text. Nothing special.");
paragraph.AddElement(run);
let classType = run.GetClassType();
paragraph = Api.CreateParagraph();
paragraph.AddText("Class Type = " + classType);
doc.Push(paragraph);