GetFont
GridCell.GetFont method
Hämtar celltypsnitt. När du ändrar teckensnitt bör du anropa “SetFont”-metoden, för att ställa in teckensnitt till cell.
public Font GetFont()
Returvärde
returnera kopia av cellteckensnitt.
Exempel
[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)
Se även
- class GridCell
- namnutrymme Aspose.Cells.GridDesktop.Data
- hopsättning Aspose.Cells.GridDesktop