{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:vb.net}
Public Function InsertSection() As 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}