Sets the cell border style to a specified border with a customized type.
CellStyle.prototype.setCellBorder = function(
borderType,
border
)
borderType
The BorderType enumeration value specifying which border of the cell to modify.
border
An instance of the CellBorder class that defines the style of the border. This parameter allows for detailed customization of the border's appearance.
This method provides a way to individually customize the borders of a cell. This is useful for highlighting certain cells, creating visually distinct sections within a table, or simply for aesthetic customization. The method uses the BorderType enumeration to specify which border to modify, and the CellBorder class to define the new border's characteristics.