Ändra font och färg på en rad eller kolumn

Ändra fonten och färgen på en kolumn

För att ändra fonten och färgen på en kolumn med Aspose.Cells.GridDesktop, följ stegen nedan:

  • Kom åt något önskat Kalkylblad
  • Öppna en Kolumn vars font och färg ska ändras
  • Skapa en anpassad Font
  • Ange Fonten för Kolumnen till den anpassade
  • Slutligen, ange Fontfärgen för Kolumnen till önskad Färg
 //Accessing the worksheet of the Grid that is currently active

Worksheet sheet = gridDesktop1.GetActiveWorksheet();

//Accessing the first column of the worksheet

GridColumn column = sheet.Columns[0];

//Creating a customized Font object

Font font = new Font("Arial", 10, FontStyle.Bold);

//Setting the font of the column to the customized Font object

column.SetFont(font);

//Setting the font color of the column to Blue

column.SetFontColor(Color.Blue);

Ändra fonten och färgen på en rad

  • Kom åt något önskat Kalkylblad
  • Öppna en Rad vars font och färg ska ändras
  • Skapa en anpassad Font
  • Ange Fonten för Rad till den anpassade
  • Slutligen, ange Fontfärgen för Rad till önskad Färg
 //Accessing the worksheet of the Grid that is currently active

Worksheet sheet = gridDesktop1.GetActiveWorksheet();

//Accessing the first row of the worksheet

GridRow row = sheet.Rows[0];

//Creating a customized Font object

Font font = new Font("Arial", 10, FontStyle.Underline);

//Setting the font of the column to the customized Font object

row.SetFont(font);

//Setting the font color of the column to Green

row.SetFontColor(Color.Green);