{description}
{excerpt}Creates and returns a [Section|Section] object that represents a new section at the beginning of this Element.{excerpt}
{signature:C#}
 public virtual Section CreateSectionBefore()
{signature}{signature: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#}
Section sect = e.CreateSectionBefore();{code}
{code:vb.net|title=vb.net}
Dim sect As Section = e.CreateSectionBefore(){code}

{example}