کار با OfficeMath
اکنون کار با اشیاء نوع OfficeMath حتی راحت تر است. در Aspose.Words، مشتری می تواند به راحتی توجیه کند و همچنین می تواند مدیریت کند که آیا یک معادله در خط یا در یک خط جداگانه نمایش داده می شود. بیشتر از این، با در دسترس بودن MathObjectType ؛ کنترل های مفید را می توان با استفاده از این شی ماتریس اجرا کرد.
نمونه های کد زیر نشان می دهد که چگونه از این ویژگی ها استفاده کنید:
// 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"); |