Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets or returns a Section.NumberFormat object that represents the page number format for this section. There are 5 type of page number formats:



{remarks}
{example}{code:csharp|title=C#}

          //--- Return PageNumberFormat
          Section.NumberFormat oPageNumberFormat = oSection.PageNumberFormat;

          //--- Set PageNumberFormat
          oSection.PageNumberFormat = Section.NumberFormat.Arabic;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Return PageNumberFormat
          Dim oPageNumberFormat As Section.NumberFormat = oSection.PageNumberFormat

          '--- Set PageNumberFormat
          oSection.PageNumberFormat = Section.NumberFormat.Arabic
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a [Section.NumberFormat|Section.NumberFormat] object that represents the page number format for this section. There are 5 type of page number formats:{excerpt}
{signature:C#}
 public NumberFormat PageNumberFormat{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property PageNumberFormat() As NumberFormat
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: Insert menu > Page Numbers... > Format... button > Number format:
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle