[System::Flags] public enum ReportFlags { dtsReportByParagraph = 0x0001, dtsReportByWord = 0x0002, dtsReportIncludeAll = 0x0004, dtsReportWholeFile = 0x0008, dtsReportByWordExact = 0x0010, dtsReportGetFromCache = 0x0020, dtsReportStoreInResults = 0x0040, dtsReportLimitContiguousContext = 0x0080, dtsReportIncludeFileStart = 0x0100 }
<System::Flags> Public Enum ReportFlags dtsReportByParagraph = &H0001 dtsReportByWord = &H0002 dtsReportIncludeAll = &H0004 dtsReportWholeFile = &H0008 dtsReportByWordExact = &H0010 dtsReportGetFromCache = &H0020 dtsReportStoreInResults = &H0040 dtsReportLimitContiguousContext = &H0080 dtsReportIncludeFileStart = &H0100 End Enum
|
Members |
Description |
|
dtsReportByParagraph |
Count context by paragraphs. |
|
dtsReportByWord |
Count context by words. |
|
dtsReportIncludeAll |
Include all items in the search report. |
|
dtsReportWholeFile |
Include full text of each selected file in the report. |
|
dtsReportByWordExact |
Count context by words, and include exactly the requested amount of context. |
|
dtsReportGetFromCache |
Use cached version of document stored in the index, if present. |
|
dtsReportStoreInResults |
Store the search report for each item in search results. |
|
dtsReportLimitContiguousContext |
Limit the size of context blocks when hits are contiguous. Using this flag prevents large context blocks from being extracted when many hits occur close together. For example, if a report is generated with 5 words of context around each hit, a single isolated hit would result in 11 words in a context block. However, if there were 100 hits clustered together, a much larger context block would be generated. |
|
dtsReportIncludeFileStart |
Include a block of text from the top of the file in the output. |
Flags for dtsSearchReportJob (C++) and SearchReportJob (Java, .NET)
|
Copyright (c) 1998-2012 dtSearch Corp. All rights reserved.
|