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)
Parameter | Typ | Beskrivning |
---|---|---|
style | Style | stil 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
- class Style
- class GridCell
- namnutrymme Aspose.Cells.GridDesktop.Data
- hopsättning Aspose.Cells.GridDesktop