Spacing
Font.Spacing property
返回或设置字符之间的间距(以磅为单位).
public double Spacing { get; set; }
例子
演示如何设置字符的水平缩放和间距。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// 添加文本行并将字符宽度增加到 150%。
builder.Font.Scaling = 150;
builder.Writeln("Wide characters");
// 添加文本行并在每个字符之间添加 1pt 的额外水平间距。
builder.Font.Spacing = 1;
builder.Writeln("Expanded by 1pt");
// 添加一串文本并使字符彼此靠得更近 1 磅。
builder.Font.Spacing = -1;
builder.Writeln("Condensed by 1pt");
doc.Save(ArtifactsDir + "Font.ScalingSpacing.docx");
也可以看看
- class Font
- 命名空间 Aspose.Words
- 部件 Aspose.Words