OfficeMath ile Çalışmak

Contents
[ ]

Şimdi ofis matematik tip nesneleriyle çalışma daha da uygun hale geliyor. Aspose.Words müşterinin kolayca hizalamasına izin verir ve bir denkleminin bir satırda veya ayrı bir satırda görüntülenip görüntülenmeyeceğini yönetmesine de izin verir. Daha fazlası, MathObjectType‘ın mevcut olması ile bu matris nesnesi ile yararlı denetimler uygulanabilir.

Aşağıdaki kod örnekleri bu özelliklerin nasıl kullanılacağını göstermektedir:

// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(UseOfficeMathProperties.class);
Document doc = new Document(dataDir + "MathEquations.docx");
OfficeMath officeMath = (OfficeMath) doc.getChild(NodeType.OFFICE_MATH, 0, true);
// Gets/sets Office Math display format type which represents whether an equation is displayed inline with the text or displayed on its own line.
officeMath.setDisplayType(OfficeMathDisplayType.DISPLAY); // or OfficeMathDisplayType.Inline
// Gets/sets Office Math justification.
officeMath.setJustification(OfficeMathJustification.LEFT); // Left justification of Math Paragraph.
doc.save(dataDir + "MathEquations_out.docx");