Values for dtsOptions.hyphens
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 the Options Overview section for information on the effect of each value.
See Also