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 end of this Element.

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

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

Example
Code Block
csharp
csharp
titleC#

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

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