Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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#
Wiki Markup
{description}
{excerpt}Creates and returns an empty [Section|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.{excerpt}
{signature:C#}
 public Section InsertSection()
Signature
{signature}{signature:vb.net
vb.net
}
Public Function InsertSection() As Section
Returns

A newly created Section.

{signature}
{returns}A newly created {{Section}}.{returns}
{example}{code:csharp|title=C#}
Section sect = pos.InsertSection();
{code}
{code:vb.net
|title=vb.net
}
Dim sect As Section = pos.InsertSection(){code}

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