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

Creates and returns a Section object that represents a new section at the beginning of this Element.

Signature
C#
C#
 public virtual Section CreateSectionBefore()
{signature}{signature:
}
Signature
vb.net
vb.net
Public Overridable Function CreateSectionBefore() As Section
{signature}
{returns}A {{Section}} object that represents a new section at the beginning of this Element.{returns}
{example}{code:csharp|title=C#}
Returns

A Section object that represents a new section at the beginning of this Element.

Example
Code Block
csharp
csharp
titleC#

Section sect = e.CreateSectionBefore();
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim sect As Section = e.CreateSectionBefore()
{code} {example}