Justification
İçindekiler
[
Saklamak
]OfficeMath.Justification property
Office Matematik gerekçesini alır/ayarlar.
public OfficeMathJustification Justification { get; set; }
Notlar
Gerekçe, görüntüleme biçimi türüyle Office Math’a ayarlanamazInline.
Satır içi yaslama, görüntüleme biçimi türüyle Office Math’a ayarlanamazDisplay.
karşılık gelenDisplayType
Office Math gerekçesini ayarlamadan önce ayarlanması gerekir.
Örnekler
Ofis matematik ekranı formatının nasıl ayarlanacağını gösterir.
Document doc = new Document(MyDir + "Office math.docx");
OfficeMath officeMath = (OfficeMath) doc.GetChild(NodeType.OfficeMath, 0, true);
// Diğer OfficeMath düğümlerinin çocukları olan OfficeMath düğümleri her zaman satır içidir.
// Çalıştığımız düğüm, konumunu ve görüntüleme türünü değiştirecek temel düğümdür.
Assert.AreEqual(MathObjectType.OMathPara, officeMath.MathObjectType);
Assert.AreEqual(NodeType.OfficeMath, officeMath.NodeType);
Assert.AreEqual(officeMath.ParentNode, officeMath.ParentParagraph);
// OfficeMath düğümünün konumunu ve görüntüleme türünü değiştirin.
officeMath.DisplayType = OfficeMathDisplayType.Display;
officeMath.Justification = OfficeMathJustification.Left;
doc.Save(ArtifactsDir + "Shape.OfficeMath.docx");
Ayrıca bakınız
- enum OfficeMathJustification
- class OfficeMath
- ad alanı Aspose.Words.Math
- toplantı Aspose.Words