SplitOptions

SplitOptions(string, int[])

Initializes a new instance of the SplitOptions class.

public SplitOptions(string filePathFormat, int[] pageNumbers)
Parameter Type Description
filePathFormat String The file path format e.g. ‘c:/split{0}.doc’ or ‘c:/split{0}.{1}’ with already pre-defined extension.
pageNumbers Int32[] Page numbers.

See Also


SplitOptions(string, int[], SplitMode)

Initializes a new instance of the SplitOptions class.

public SplitOptions(string filePathFormat, int[] pageNumbers, SplitMode splitMode)
Parameter Type Description
filePathFormat String The file path format e.g. ‘c:/split{0}.doc’ or ‘c:/split{0}.{1}’ with already pre-defined extension.
pageNumbers Int32[] Page numbers.
splitMode SplitMode The splitting mode of Mode.

See Also


SplitOptions(string, int, int)

Initializes a new instance of the SplitOptions class.

public SplitOptions(string filePathFormat, int startNumber, int endNumber)
Parameter Type Description
filePathFormat String The file path format e.g. ‘c:/split{0}.doc’ or ‘c:/split{0}.{1}’ with already pre-defined extension.
startNumber Int32 The start page number.
endNumber Int32 The end page number.

See Also


SplitOptions(string, int, int, RangeMode)

Initializes a new instance of the SplitOptions class.

public SplitOptions(string filePathFormat, int startNumber, int endNumber, RangeMode mode)
Parameter Type Description
filePathFormat String The file path format e.g. ‘c:/split{0}.doc’ or ‘c:/split{0}.{1}’ with already pre-defined extension.
startNumber Int32 The start page number.
endNumber Int32 The end page number.
mode RangeMode The range mode.

See Also


SplitOptions(CreateSplitStream)

Initializes a new instance of the SplitOptions class.

public SplitOptions(CreateSplitStream createSplitStream)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.

See Also


SplitOptions(CreateSplitStream, int[])

Initializes a new instance of the SplitOptions class.

public SplitOptions(CreateSplitStream createSplitStream, int[] pageNumbers)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
pageNumbers Int32[] Page numbers.

See Also


SplitOptions(CreateSplitStream, int[], SplitMode)

Initializes a new instance of the SplitOptions class.

public SplitOptions(CreateSplitStream createSplitStream, int[] pageNumbers, SplitMode splitMode)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
pageNumbers Int32[] Page numbers.
splitMode SplitMode The splitting mode of Mode.

See Also


SplitOptions(CreateSplitStream, int, int)

Initializes a new instance of the SplitOptions class.

public SplitOptions(CreateSplitStream createSplitStream, int startNumber, int endNumber)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
startNumber Int32 The start page number.
endNumber Int32 The end page number.

See Also


SplitOptions(CreateSplitStream, int, int, RangeMode)

Initializes a new instance of the SplitOptions class.

public SplitOptions(CreateSplitStream createSplitStream, int startNumber, int endNumber, 
    RangeMode mode)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
startNumber Int32 The start page number.
endNumber Int32 The end page number.
mode RangeMode The range mode.

See Also


SplitOptions(CreateSplitStream, ReleaseSplitStream)

Initializes a new instance of the SplitOptions class.

public SplitOptions(CreateSplitStream createSplitStream, ReleaseSplitStream releaseSplitStream)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
releaseSplitStream ReleaseSplitStream The method that releases stream created by createPageStream method.

See Also


SplitOptions(CreateSplitStream, ReleaseSplitStream, int[])

Initializes a new instance of the SplitOptions class.

public SplitOptions(CreateSplitStream createSplitStream, ReleaseSplitStream releaseSplitStream, 
    int[] pageNumbers)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
releaseSplitStream ReleaseSplitStream The method that releases stream created by createPageStream method.
pageNumbers Int32[] Page numbers.

See Also


SplitOptions(CreateSplitStream, ReleaseSplitStream, int[], SplitMode)

Initializes a new instance of the SplitOptions class.

public SplitOptions(CreateSplitStream createSplitStream, ReleaseSplitStream releaseSplitStream, 
    int[] pageNumbers, SplitMode splitMode)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
releaseSplitStream ReleaseSplitStream The method that releases stream created by createPageStream method.
pageNumbers Int32[] Page numbers.
splitMode SplitMode The splitting mode of Mode.

See Also


SplitOptions(CreateSplitStream, ReleaseSplitStream, int, int)

Initializes a new instance of the SplitOptions class.

public SplitOptions(CreateSplitStream createSplitStream, ReleaseSplitStream releaseSplitStream, 
    int startNumber, int endNumber)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
releaseSplitStream ReleaseSplitStream The method that releases stream created by createPageStream method.
startNumber Int32 The start page number.
endNumber Int32 The end page number.

See Also


SplitOptions(CreateSplitStream, ReleaseSplitStream, int, int, RangeMode)

Initializes a new instance of the SplitOptions class.

public SplitOptions(CreateSplitStream createSplitStream, ReleaseSplitStream releaseSplitStream, 
    int startNumber, int endNumber, RangeMode mode)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
releaseSplitStream ReleaseSplitStream The method that releases stream created by createPageStream method.
startNumber Int32 The start page number.
endNumber Int32 The end page number.
mode RangeMode The range mode.

See Also