Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns the style for the first cell in the range. Changes to this style will apply only to the first cell. To assign this style to the entire Range, set Range.SetStyle() to this Style reference.

{signature}
{example}{code:csharp|title=C#}
Style firstStyle = rng.FirstCellStyle;
{code}
{code:vb.net
|title=vb.net
}
Dim firstStyle As Style = rng.FirstCellStyle{code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns the style for the first cell in the range. Changes to this style will apply  +only+  to the first cell. To assign this style to the entire [Range], set [Range.SetStyle()|Range.SetStyle(Style)] to this [Style|Style] reference.{excerpt}
{signature:C#}
 public Style FirstCellStyle{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property FirstCellStyle() As Style
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle