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 the style for every cell in this range. When a style is set - rather than applied (see Range.ApplyStyle ) - all previously assigned style properties, including font and number formatting, will be overwritten for all cells in the range.

Signature
C#
C#
 public void SetStyle(Style style)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub SetStyle(ByVal style As Style)
{signature}
{parameters}
{param:style}The Style object to assign to the range.{param}
{example}{code:csharp|title=C#}
Parameters
Param
style
style

The Style object to assign to the range.

Example
Code Block
csharp
csharp
titleC#

rng.SetStyle(styl);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

rng.SetStyle(styl)
{code} {example}