Show / Hide Table of Contents

Class SplitPDFParams

Parameters for splitting a pdf using SplitPDFJob.

Inheritance
System.Object
SplitPDFParams
Namespace: Adobe.PDFServicesSDK.pdfjobs.parameters.splitpdf
Assembly: Adobe.PDFServicesSDK.Doc.dll
Syntax
public class SplitPDFParams

Constructors

SplitPDFParams()

Creates an instance of SplitPDFParams to be used in SplitPDFJob.

Declaration
public SplitPDFParams()

Properties

FileCount

Gets the file count to be used for splitting pages.

Declaration
public int? FileCount { get; }
Property Value
Type Description
System.Nullable<System.Int32>

PageCount

Gets the page count to be used for splitting pages.

Declaration
public int? PageCount { get; }
Property Value
Type Description
System.Nullable<System.Int32>

PageRanges

Gets the PageRanges to be used for splitting pages.

Declaration
public PageRanges PageRanges { get; }
Property Value
Type Description
PageRanges

Methods

SetFileCount(Int32)

Sets the file count to be used for splitting pages.

Declaration
public void SetFileCount(int fileCount)
Parameters
Type Name Description
System.Int32 fileCount

the file count to be used for splitting pages; can not be null.

SetPageCount(Int32)

Sets the page count to be used for splitting pages.

Declaration
public void SetPageCount(int pageCount)
Parameters
Type Name Description
System.Int32 pageCount

the page count to be used for splitting pages; can not be null.

SetPageRanges(PageRanges)

Sets the PageRanges to be used for splitting pages.

Declaration
public void SetPageRanges(PageRanges pageRanges)
Parameters
Type Name Description
PageRanges pageRanges

the PageRanges to be used for splitting pages; can not be null.

In This Article
Back to top Copyright © 2020 Adobe. All rights reserved.