Click or drag to resize

PdfFocusRenderPages Property

Allows to specify a set of page ranges for converting

Namespace: SautinSoft
Assembly: SautinSoft.PdfFocus (in SautinSoft.PdfFocus.dll) Version: 8.6.1.18
Syntax
public int[][] RenderPages { get; set; }

Property Value

Int32
Remarks
Let us say, we decide to convert these page ranges: 1 to 2, 5 to 7.
The code in C# will look so: f.RenderPages = new int[][]
{ new int [] {1,2}, new int [] {5,7} };
Example
Convert diapason of PDF pages to Word using C#
using System;
using System.IO;

namespace Sample
{
    class Sample
    {
        static void Main(string[] args)
        {
            string inpFile = @"..\..\Potato Beetle.pdf";
            string outFile = "Result.rtf";

            SautinSoft.PdfFocus f = new SautinSoft.PdfFocus();
            // this property is necessary only for registered version.
            //f.Serial = "XXXXXXXXXXX";

            f.OpenPdf(inpFile);

            if (f.PageCount > 0)
            {
                // You may set an output format to docx or rtf.
                f.WordOptions.Format = SautinSoft.PdfFocus.CWordOptions.eWordDocument.Rtf;

                // Specify to convert these pages: 2 - 4  and 6.

                // Way 1:
                f.RenderPagesString = "2-4, 6";

                // Way 2 (do the same as Way 1):
                f.RenderPages = new int[][] {new int[] {2, 4},
                                             new int[] {6, 6}};

                int result = f.ToWord(outFile);

                // Open the result.
                if (result == 0)
                {
                    System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outFile) { UseShellExecute = true });
                }
            }
        }
    }
}
Convert diapason of PDF pages to Word using VB.Net
Imports System.IO
Imports System.Drawing.Imaging
Imports System.Collections.Generic
Imports SautinSoft

Module Sample

    Sub Main()
        Dim inpFile As String = "..\Potato Beetle.pdf"
        Dim outFile As String = "Result.rtf"

        Dim f As New SautinSoft.PdfFocus()
        ' this property is necessary only for registered version.
        'f.Serial = "XXXXXXXXXXX";

        f.OpenPdf(inpFile)

        If f.PageCount > 0 Then
            ' You may set an output format to docx or rtf.
            f.WordOptions.Format = SautinSoft.PdfFocus.CWordOptions.eWordDocument.Rtf

            ' Specify to convert these pages: 2 - 4  and 6.

            ' Way 1:
            f.RenderPagesString = "2-4, 6"

            ' Way 2 (do the same as Way 1):
            f.RenderPages = New Integer()() {
                    New Integer() {2, 4},
                    New Integer() {6, 6}
                }

            Dim result As Integer = f.ToWord(outFile)

            ' Open the result.
            If result = 0 Then
                System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outFile) With {.UseShellExecute = True})
            End If
        End If
    End Sub
End Module
See Also