GetFont

GridCell.GetFont method

الحصول على خط الخلية. عند تغيير الخط ، يجب استدعاء طريقة “SetFont” ، لتعيين الخط على الخلية.

public Font GetFont()

قيمة الإرجاع

إرجاع نسخة من خط الخلية.

أمثلة

[C#]
GridCell cell = gridDesktop1.GetActiveWorksheet().Cells[0, 0];
Font font = new Font("Courier New", 8, FontStyle.Italic);
cell.SetFont(font);
Color color = cell.GetFontColor();
color = Color.Black;
cell.SetFontColor(color);

[Visual Basic]
Dim cell As GridCell =  gridDesktop1.GetActiveWorksheet().Cells(0, 0) 
Dim font As Font =  New Font("Courier New",8,FontStyle.Italic) 
cell.SetFont(font)
Dim color As Color =  cell.GetFontColor() 
color = Color.Black
cell.SetFontColor(color)

أنظر أيضا