SetStyle

GridCell.SetStyle method

Establece el estilo en la celda. Para mejorar el rendimiento, implemente el método “SetStyle”, no implemente la propiedad “Estilo”.

public void SetStyle(Style value)
ParámetroEscribeDescripción
styleStyleestilo a configurar.

Ejemplos

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

Ver también