SetFontColor
GridCell.SetFontColor method
Définit la couleur de la police sur la cellule. Pour améliorer les performances, implémentez la méthode “SetFontColor”, n’implémentez pas la propriété “FontColor”.
public void SetFontColor(Color color)
Paramètre | Taper | La description |
---|---|---|
color | Color | couleur de 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