[]
Splits the current document into several documents based on specified ranges and formatting copy strategies.
public IEnumerable<GcWordDocument> SplitDocument(params (RangeBase, FormattingCopyStrategy)[] splitRanges)
| Type | Name | Description |
|---|---|---|
| (RangeBase, FormattingCopyStrategy)[] | splitRanges | An array of pairs of ranges in the current document, and corresponding formatting copy strategies. |
| Type | Description |
|---|---|
| IEnumerable<GcWordDocument> | A collection of documents created according to the specified |
Splits the current document into several documents based on specified ranges and a common formatting copy strategy.
public IEnumerable<GcWordDocument> SplitDocument(FormattingCopyStrategy copyStrategy, params RangeBase[] splitRanges)
| Type | Name | Description |
|---|---|---|
| FormattingCopyStrategy | copyStrategy | The formatting copy strategy to use. |
| RangeBase[] | splitRanges | An array of ranges in the current document. |
| Type | Description |
|---|---|
| IEnumerable<GcWordDocument> | A collection of documents created according to the specified |
Splits the current document into several documents based on specified ranges, using Copy to preserve formatting of the source document.
public IEnumerable<GcWordDocument> SplitDocument(params RangeBase[] splitRanges)
| Type | Name | Description |
|---|---|---|
| RangeBase[] | splitRanges | An array of ranges in the current document. |
| Type | Description |
|---|---|
| IEnumerable<GcWordDocument> | A collection of documents created according to the specified |