TextSplitOptions

TextSplitOptions(string, int[])

Initializes a new instance of the TextSplitOptions class.

public TextSplitOptions(string filePathFormat, int[] lineNumbers)
Parameter Type Description
filePathFormat String The file path format e.g. ‘c:/split{0}.doc’ or ‘c:/split{0}.{1}’ with already defined extension.
lineNumbers Int32[] Line numbers for text splitting.

See Also


TextSplitOptions(string, TextSplitMode, int[])

Initializes a new instance of the TextSplitOptions class.

public TextSplitOptions(string filePathFormat, TextSplitMode mode, int[] lineNumbers)
Parameter Type Description
filePathFormat String The file path format e.g. ‘c:/split{0}.doc’ or ‘c:/split{0}.{1}’ with already defined extension.
mode TextSplitMode Mode for text splitting.
lineNumbers Int32[] Line numbers for text splitting.

See Also


TextSplitOptions(CreateSplitStream, int[])

Initializes a new instance of the TextSplitOptions class.

public TextSplitOptions(CreateSplitStream createSplitStream, int[] lineNumbers)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
lineNumbers Int32[] Line numbers for text splitting.

See Also


TextSplitOptions(CreateSplitStream, TextSplitMode, int[])

Initializes a new instance of the TextSplitOptions class.

public TextSplitOptions(CreateSplitStream createSplitStream, TextSplitMode mode, int[] lineNumbers)
Parameter Type Description
createSplitStream CreateSplitStream The method that instantiates stream used to write output split data.
mode TextSplitMode Mode for text splitting.
lineNumbers Int32[] Line numbers for text splitting.

See Also


TextSplitOptions(CreateSplitStream, ReleaseSplitStream, int[])

Initializes a new instance of the TextSplitOptions class.

public TextSplitOptions(CreateSplitStream createSplitStream, ReleaseSplitStream releaseSplitStream, 
    int[] lineNumbers)
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.
lineNumbers Int32[] Line numbers for text splitting.

See Also


TextSplitOptions(CreateSplitStream, ReleaseSplitStream, TextSplitMode, int[])

Initializes a new instance of the TextSplitOptions class.

public TextSplitOptions(CreateSplitStream createSplitStream, ReleaseSplitStream releaseSplitStream, 
    TextSplitMode mode, int[] lineNumbers)
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.
mode TextSplitMode Mode for text splitting.
lineNumbers Int32[] Line numbers for text splitting.

See Also