Returns a type of the ApiStyle class.
This method doesn't have any parameters.
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oTableStyle = oDocument.GetStyle("Bordered"); oTableStyle.SetName("My Custom Style"); var oTable = Api.CreateTable(2, 2); oTable.SetWidth("percent", 100); oTable.SetStyle(oTableStyle); oDocument.Push(oTable); var sClassType = oTableStyle.GetClassType(); var oParagraph = oDocument.GetElement(0); oParagraph.AddText("Class Type = " + sClassType); builder.SaveFile("docx", "GetClassType.docx"); builder.CloseFile();