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 whether Excel should determine the first page number for the printed worksheet. Setting the FirstPageNumber property will set this property to false.

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

          //--- Get FirstPageNumberAuto
          bool firstPageAuto = ps.FirstPageNumberAuto;

          //--- Set FirstPageNumberAuto
          ps.FirstPageNumberAuto = true;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get FirstPageNumberAuto
          Dim firstPageAuto As Boolean = ps.FirstPageNumberAuto

          '--- Set FirstPageNumberAuto
          ps.FirstPageNumberAuto = False
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns whether Excel should determine the first page number for the printed worksheet. Setting the FirstPageNumber property will set this property to false.{excerpt}
{signature:C#}
 public boolean FirstPageNumberAuto{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property FirstPageNumberAuto() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle