Enumerates the different breaking types that occur between
chunks of text read out by the FileFilter.
Namespace: FilterLibraryAssembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)
Syntax
| C# |
|---|
public enum CHUNK_BREAKTYPE |
| Visual Basic |
|---|
Public Enumeration CHUNK_BREAKTYPE |
| Visual C++ |
|---|
public enum class CHUNK_BREAKTYPE |
Members
| Member name | Value | Description | |
|---|---|---|---|
| CHUNK_NO_BREAK | 0 | No break is placed between the current chunk and the previous chunk. The chunks are glued together. | |
| CHUNK_EOW | 1 | A word break is placed between this chunk and the previous chunk that had the same attribute. Use of CHUNK_EOW should be minimized because the choice of word breaks is language-dependent, so determining word breaks is best left to the search engine. | |
| CHUNK_EOS | 2 | A sentence break is placed between this chunk and the previous chunk that had the same attribute. | |
| CHUNK_EOP | 3 | A paragraph break is placed between this chunk and the previous chunk that had the same attribute. | |
| CHUNK_EOC | 4 | A chapter break is placed between this chunk and the previous chunk that had the same attribute. |