GetFont

GridCell.GetFont method

Obtient la police de la cellule. Lorsque vous modifiez la police, vous devez appeler la méthode “SetFont”, pour définir la police sur la cellule.

public Font GetFont()

Return_Value

renvoie une copie de la police de la cellule.

Exemples

[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)

Voir également