SetFont
GridCell.SetFont method
Définit la police sur la cellule. Pour améliorer les performances, implémentez la méthode “SetFont”, n’implémentez pas la propriété “Font”.
public void SetFont(Font font)
Paramètre | Taper | La description |
---|---|---|
font | Font | police à définir. |
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
- class GridCell
- espace de noms Aspose.Cells.GridDesktop.Data
- Assemblée Aspose.Cells.GridDesktop