FontUnit
FontUnit class
Menentukan format tertentu untuk teks, termasuk tampilan font, ukuran, dan atribut gaya dengan ukuran dalam properti nilai Unit.
public sealed class FontUnit
Properti
Nama | Keterangan |
---|---|
FamilyName { get; set; } | Mendapat atau menyetel nama wajah Font ini. |
Size { get; } | Mendapat atau menetapkan ukuran FontUnit ini dalam nilai Unit. |
Style { get; set; } | Mendapat atau menetapkan informasi gaya untuk FontUnit ini. |
Contoh
Contoh ini menunjukkan cara membuat dan menyimpan gambar BarCode.
[C#]
using (BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128))
{
generator.CodeTextStyle.Font.Style = FontStyle.Italic;
generator.CodeTextStyle.Font.Size.Point = 18;
generator.Save("test.png");
}
Lihat juga
- ruang nama Aspose.BarCode.Generation
- perakitan Aspose.BarCode