JustificationMode
JustificationMode enumeration
指定文档的字符间距调整。 默认值为扩张
.
public enum JustificationMode
价值观
姓名 | 价值 | 描述 |
---|---|---|
Expand | 0 | |
Compress | 1 | |
CompressKana | 2 |
例子
演示如何管理字符间距控制。
Document doc = new Document(MyDir + "Document.docx");
JustificationMode justificationMode = doc.JustificationMode;
if (justificationMode == JustificationMode.Expand)
doc.JustificationMode = JustificationMode.Compress;
doc.Save(ArtifactsDir + "Document.SetJustificationMode.docx");