Lavorare con OfficeMath
Ora è ancora più conveniente lavorare con gli oggetti di tipo OfficeMath. In Aspose.Words, il cliente può facilmente giustificare e anche gestire se un’equazione viene visualizzata in linea o in una riga separata. Ancor di più, con la disponibilità di MathObjectType; controlli utili possono essere implementati utilizzando questo oggetto matrice.
I seguenti esempi di codice mostrano come utilizzare queste proprietà:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir_WorkingWithFields(); | |
Document doc = new Document(dataDir+ "MathEquations.docx"); | |
OfficeMath officeMath = (OfficeMath)doc.GetChild(NodeType.OfficeMath, 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.DisplayType = OfficeMathDisplayType.Display; // or OfficeMathDisplayType.Inline | |
// Gets/sets Office Math justification. | |
officeMath.Justification = OfficeMathJustification.Left; // Left justification of Math Paragraph. | |
doc.Save(dataDir + "MathEquations_out.docx"); |