Border

Border class

Encapsula el objeto que representa el borde de la celda.

public class Border

Propiedades

NombreDescripción
ArgbColor { get; set; }Obtiene y establece el color con un valor ARGB de 32 bits.
Color { get; set; }Obtiene o establece elColor de la frontera.
LineStyle { get; set; }Obtiene o establece el tipo de borde de celda.
ThemeColor { get; set; }Obtiene y establece el color del tema del borde.

Ejemplos

[C#]
Workbook workbook = new Workbook();

WorksheetCollection sheets = workbook.Worksheets;
Cell cell = sheets[0].Cells["A1"];

Style style = cell.GetStyle();
//Establecer el estilo y el color del borde superior
Border border = style.Borders[BorderType.TopBorder];
border.LineStyle = CellBorderType.Medium;
border.Color = Color.Red;
cell.SetStyle(style);

[Visual Basic]
Dim workbook as Workbook  = New Workbook()

Dim sheets as WorksheetCollection  = workbook.Worksheets
Cell cell = sheets(0).Cells("A1");
Dim style as Style = cell.GetStyle()
'Establecer el estilo y el color del borde superior
Dim border as Border = style.Borders(BorderType.TopBorder)
border.LineStyle = CellBorderType.Medium
border.Color = Color.Red
cell.SetStyle(style);

Ver también