GetFont

GridCell.GetFont method

Ruft die Schriftart der Zelle ab. Wenn Sie die Schriftart ändern, sollten Sie die Methode “SetFont” aufrufen, um die Schriftart auf die Zelle festzulegen.

public Font GetFont()

Rückgabewert

Rückgabekopie der Zellenschriftart.

Beispiele

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

Siehe auch