Justification
Inhalt
[
Ausblenden
]OfficeMath.Justification property
Ruft die Office Math-Begründung ab bzw. legt sie fest.
public OfficeMathJustification Justification { get; set; }
Bemerkungen
Die Ausrichtung kann nicht auf den Anzeigeformattyp „Office Math“ eingestellt werdenInline.
Die Inline-Ausrichtung kann nicht auf den Anzeigeformattyp „Office Math“ eingestellt werdenDisplay.
DazugehörigenDisplayType
muss vor dem Festlegen der Office Math-Ausrichtung festgelegt werden.
Beispiele
Zeigt, wie die Anzeigeformatierung für Office-Mathematik festgelegt wird.
Document doc = new Document(MyDir + "Office math.docx");
OfficeMath officeMath = (OfficeMath) doc.GetChild(NodeType.OfficeMath, 0, true);
// OfficeMath-Knoten, die anderen OfficeMath-Knoten untergeordnet sind, sind immer inline.
// Der Knoten, mit dem wir arbeiten, ist der Basisknoten, um seinen Standort und Anzeigetyp zu ändern.
Assert.AreEqual(MathObjectType.OMathPara, officeMath.MathObjectType);
Assert.AreEqual(NodeType.OfficeMath, officeMath.NodeType);
Assert.AreEqual(officeMath.ParentNode, officeMath.ParentParagraph);
// Ändern Sie den Speicherort und den Anzeigetyp des OfficeMath-Knotens.
officeMath.DisplayType = OfficeMathDisplayType.Display;
officeMath.Justification = OfficeMathJustification.Left;
doc.Save(ArtifactsDir + "Shape.OfficeMath.docx");
Siehe auch
- enum OfficeMathJustification
- class OfficeMath
- namensraum Aspose.Words.Math
- Montage Aspose.Words