SetStyle

GridCell.SetStyle method

Anger stil till cell. För att förbättra prestandan, implementera “SetStyle”-metoden, implementera inte “Style”-egenskapen.

public void SetStyle(Style value)
ParameterTypBeskrivning
styleStylestil som ska ställas in.

Exempel

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

Se även