FontUnit
FontUnit class
定义文本的特定格式,包括字体、大小和样式属性 其中大小在单位值属性中。
public sealed class FontUnit
特性
姓名 | 描述 |
---|---|
FamilyName { get; set; } | 获取或设置此字体的面名。 |
Size { get; } | 以单位值获取或设置此 FontUnit 的大小。 |
Style { get; set; } | 获取或设置此 FontUnit 的样式信息。 |
例子
此示例显示如何创建和保存条形码图像。
[C#]
using (BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128))
{
generator.CodeTextStyle.Font.Style = FontStyle.Italic;
generator.CodeTextStyle.Font.Size.Point = 18;
generator.Save("test.png");
}