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

Applies a style to the column. When a style is applied - rather than set (see ColumnProperties.Style ) - only the differences between the new style and style properties previously assigned to the column (through the ExcelWriter API or in Microsoft Excel) will take effect. For example, if a cell in the column has a background color and the new style applied does not contain a background color, the cell's color will not be affected.

Signature
C#
C#
 public void ApplyStyle(Style style)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub ApplyStyle(ByVal style As Style)
{signature}
{parameters}
{param:style}The [Style|ColumnProperties.Style] object to apply to the row.{param}
{example}{code:csharp|title=C#}
Parameters
Param
style
style

The Style object to apply to the row.

Example
Code Block
csharp
csharp
titleC#

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

colProps.ApplyStyle(styl)
{code} {example}