Values for Options.Hyphens, specifying how hyphens should be indexed.
C#
public enum HyphenSettings {
dtsoHyphenAsIgnore = 1,
dtsoHyphenAsHyphen = 2,
dtsoHyphenAsSpace = 3,
dtsoHyphenAll = 4
}
Members
Members |
Description |
---|---|
dtsoHyphenAsIgnore |
index "first-class" as "firstclass" |
dtsoHyphenAsHyphen |
index "first-class" as "first-class" |
dtsoHyphenAsSpace |
index "first-class" as "first" and "class" |
dtsoHyphenAll |
index "first-class" all three ways |
Remarks
See Hyphens in dtSearchApiRef.chm for information on what each value means.
See Also