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

...

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:

Signature
C#
C#
 public NumberFormat PageNumberFormat{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property PageNumberFormat() As NumberFormat
{signature}
{remarks}MS Word 
Remarks

MS Word equivalent:

Insert

menu

>

Page

Numbers...

>

Format...

button

>

Number

format:

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

Example
Code Block
csharp
csharp
titleC#


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

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


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

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