Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Sets or returns a Style object that determines how the cell looks, including number format, font, orientation, etc. Accessing the cell's style through Cell.Style will not affect the formatting of other cells with the same global style.

Signature
C#
C#
 public Style Style{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property Style() As Style
{signature}
{remarks}When a style is set \- rather than applied \(see  [Cell.ApplyStyle|Cell.ApplyStyle(Style)]\) \-  all properties of the style will be assigned to the cell.  Properties not explicitly set on the new style default to Normal style values.

{remarks}
{example}{code:csharp|title=C#}
Remarks

When a style is set - rather than applied (see Cell.ApplyStyle) - all properties of the style will be assigned to the cell. Properties not explicitly set on the new style default to Normal style values.

Example
Code Block
csharp
csharp
titleC#


          //--- Get Style
          Style s = cellA1.Style;

          //--- Set Style
          cellA1.Style = s;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          '--- Get Style
          Dim s As Style = cellA1.Style

          '--- Set Style
          cellA1.Style = s
        
{code} {example} {scrollbar}
Scrollbar