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
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:vb.net}
Public ReadOnly Property FirstCellStyle() As Style
{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}