OfficeMathJustification
Contenu
[
Cacher
]OfficeMathJustification enumeration
Spécifie la justification de l’équation.
public enum OfficeMathJustification
Valeurs
Nom | Évaluer | La description |
---|---|---|
CenterGroup | 1 | Justifie les instances de texte mathématique à gauche les unes par rapport aux autres et centre le groupe de texte mathématique (le paragraphe mathématique) par rapport à la page. |
Center | 2 | Centre chaque instance de texte mathématique individuellement par rapport aux marges. |
Left | 3 | Justification à gauche du paragraphe mathématique. |
Right | 4 | Justification correcte du paragraphe mathématique. |
Inline | 7 | Position en ligne de Math. |
Default | 1 | Valeur par défautCenterGroup . |
Exemples
Montre comment définir le formatage de l’affichage des mathématiques de bureau.
Document doc = new Document(MyDir + "Office math.docx");
OfficeMath officeMath = (OfficeMath) doc.GetChild(NodeType.OfficeMath, 0, true);
// Les nœuds OfficeMath qui sont des enfants d'autres nœuds OfficeMath sont toujours en ligne.
// Le nœud avec lequel nous travaillons est le nœud de base pour changer son emplacement et son type d'affichage.
Assert.AreEqual(MathObjectType.OMathPara, officeMath.MathObjectType);
Assert.AreEqual(NodeType.OfficeMath, officeMath.NodeType);
Assert.AreEqual(officeMath.ParentNode, officeMath.ParentParagraph);
// Modifiez l'emplacement et le type d'affichage du nœud OfficeMath.
officeMath.DisplayType = OfficeMathDisplayType.Display;
officeMath.Justification = OfficeMathJustification.Left;
doc.Save(ArtifactsDir + "Shape.OfficeMath.docx");
Voir également
- espace de noms Aspose.Words.Math
- Assemblée Aspose.Words