SetFont
GridCell.SetFont method
为单元格设置字体。 为提高性能,实现“SetFont”方法, 不实现“字体”属性。
public void SetFont(Font font)
范围 | 类型 | 描述 |
---|---|---|
font | Font | 要设置的字体。 |
例子
[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)