GetClassType
function GetClassType(): paragraph
Description
Returns a type of the ApiParagraph class.
Returns
paragraph
Overloads
- GetClassType
()
Returns a type of the ApiParaPr class.
Try It
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var sClassType = oParagraph.GetClassType();
oParagraph.AddText("Class Type = " + sClassType);