Returns a type of the ApiBullet class.
This method doesn't have any parameters.
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oBullet = Api.CreateBullet("- "); var sType = oBullet.GetClassType(); var oParagraph = oDocument.GetElement(0); oParagraph.AddText("The ApiBullet class type: " + sType); builder.SaveFile("docx", "GetClassType.docx"); builder.CloseFile();