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 an empty Section at the point represented by this Position. If this Position is in the middle of a section then the containing section will be split.

Signature
C#
C#
 public Section InsertSection()
{signature}{signature:
}
Signature
vb.net
vb.net
Public Function InsertSection() As Section
{signature}
{returns}A newly created {{Section}}.{returns}
{example}{code:csharp|title=C#}
Returns

A newly created Section.

Example
Code Block
csharp
csharp
titleC#

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

Dim sect As Section = pos.InsertSection()
{code} {example}