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
Wiki Markup
{description}
{excerpt}Returns an [Element|Element] object that represents the header of the specified type for this section. The header is returned as a editable element. There are 4 types of headers:{excerpt}
{signature:C#}
 public Element GetHeader(HeaderFooterType type)
{signature}{signature:vb.net}
Public Function GetHeader(ByVal type As HeaderFooterType) As Element
{signature}
{parameters}
{param:type}A [Section.HeaderFooterType|Section.HeaderFooterType] object that represents the type of header to return.{param}
{returns}An {{Element}} object that represents the header of the specified type for this section.{returns}
{example}{code:csharp|title=C#}

          Element oElement = oSection.GetHeader(Section.HeaderFooterType.All);
        {code}
{code:vb.net|title=vb.net}

          Dim oElement As Element = oSection.GetHeader(Section.HeaderFooterType.All)
        {code}

{example}