{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:vb.net}
Public Property FirstPageNumberAuto() As Boolean
{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}