Creates a global style, which can be bound to cells, areas, ranges, rows, and columns. Any later changes to this style will affect all cells to which the style was bound.

 public GlobalStyle CreateStyle()
Public Function CreateStyle() As GlobalStyle

A GlobalStyle object which can be linked and applied to cells, but will not be accessible from the generated Excel spreadsheet.

To bind a style to a cell or set of cells, use either Style or ApplyStyle. Both are accessible through the following objects: Cell, Area, Range, RowProperties, and ColumnProperties.

Style styl = wb.CreateStyle();
Dim styl As Style = wb.CreateStyle()