SetStyle

GridCell.SetStyle method

Définit le style sur la cellule. Pour améliorer les performances, implémentez la méthode “SetStyle”, n’implémentez pas la propriété “Style”.

public void SetStyle(Style value)
ParamètreTaperLa description
styleStylestyle à définir.

Exemples

[C#]
Style style = sheet.GetCell(0, 0).GetStyle();
style.CellLocked = true;
style.VAlignment = VerticalAlignmentType.Top;
...
sheet.GetCell(0, 0).SetStyle(style);

[Visual Basic]
Dim style As Style =  sheet.GetCell(0,0).GetStyle() 
style.CellLocked = True
style.VAlignment = VerticalAlignmentType.Top
...
sheet.GetCell(0, 0).SetStyle(style)

Voir également