Mungkin beberapa teman teman disini masih bingung saat mau mengubah property Font pada object di VBNET. Jika di VB6 mungkin anda dapat menulis sintaknya seperti ini :
With Command1.FontName = "Comic Sans Ms"
.FontSize = 14
.FontBold = True
.FontItalic = True
.FontUnderline = True
.FontStrikethru = True
End With
Sedangkan di VBNET property Font seperti : Font.Name, Font.Size dll itu adalah ReadOnly. Maka dari itu untuk mengubah font suatu object di VBNET anda dapat menulis sintak seperti ini :
Button1.Font = NewSystem.Drawing.Font("Comic Sans MS", 14, FontStyle.Bold Or FontStyle.Italic Or FontStyle.Underline)
Tags:
cara mengubah font secara coding program vbnet, how to change font style vbnet, change all font style as same time once vbnet
0 komentar:
Posting Komentar