GetStyle

GridCell.GetStyle method

Får cellstil. När du ändrar stil bör du anropa “SetStyle”-metoden, för att ställa in stil till cell.

public Style GetStyle()

Returvärde

returnera kopia av cellstil.

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