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 a NamedStyle if it exists. If the style does not exist, null is returned.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [NamedStyle|NamedStyle] if it exists. If the style does not exist, null is returned.{excerpt}
{signature:C#}
 public NamedStyle GetNamedStyle(System.String styleName)
Signature
{signature}{signature:vb.net
vb.net
}
Public Function GetNamedStyle(ByVal styleName As String) As NamedStyle
Parameters

...

The name of the style to retrieve.

Returns

The named style with the name styleName, or null if the style does not exist.

{signature}
{parameters}
{param:styleName}The name of the style to retrieve.{param}
{returns}The named style with the name {{styleName}}, or null if the style does not exist.{returns}
{example}{code:csharp|title=C#}
NamedStyle heading1Style = wb.GetNamedStyle("Heading1");
{code}
{code:vb.net
|title=vb.net
}
Dim heading1Style As NamedStyle = wb.GetNamedStyle("Heading1"){code}

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle