C#
public enum ListIndexFlags {
dtsListIndexWords = 0x00000001,
dtsListIndexFiles = 0x00000002,
dtsListIndexFields = 0x00000004,
dtsListIndexIncludeCount = 0x00000008,
dtsListIndexReturnString = 0x00000010,
dtsListIndexIncludeField = 0x00000100,
dtsListTabDelimit = 0x200,
dtsListIndexIncludeDocId = 0x400,
dtsListIndexIncludeDocCount = 0x800,
dtsListIndexIncludeDocInfoAsXml = 0x1000,
dtsListIndexSkipNoiseWords = 0x2000,
dtsListIndexFieldValues = 0x4000
}
Members
Members |
Description |
---|---|
dtsListIndexWords |
List words in the index |
dtsListIndexFiles |
List files in the index |
dtsListIndexFields |
List fields in the index |
dtsListIndexIncludeCount |
For lists of words, include the number of times each word occurs in the index |
dtsListIndexReturnString |
Return the list using the outputString |
dtsListIndexIncludeField |
For lists of words, include the field where each word is found |
dtsListTabDelimit |
Delimit items in list with tabs instead of spaces |
dtsListIndexIncludeDocId |
In a list of files, include the doc id of each document |
dtsListIndexIncludeDocCount |
In a list of words, include the number of documents each word occurs in |
dtsListIndexIncludeDocInfoAsXml |
In a list of documents, include document properties |
dtsListIndexSkipNoiseWords |
Skip noise words when listing words in an index |
dtsListIndexFieldValues |
List values of enumerable fields |
Remarks
Flags used in dtsListIndexJob (C++) and ListIndexJob (.NET, Java)
See Also