[This is preliminary documentation and is subject to change.]

Filters encoding by its parameters

Namespace: Tools.WindowsT.FormsT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public enum EncodingFilters
Visual Basic
Public Enumeration EncodingFilters
Visual C++
public enum class EncodingFilters
F#
type EncodingFilters
JScript
public enum EncodingFilters

Members

Member nameValueDescription
NormalizedYes1IsAlwaysNormalized()()()() = True
NormalizedNo2IsAlwaysNormalized()()()() = False
BrowserDisplayYes4IsBrowserDisplay = True
BrowserDisplayNo8IsBrowserDisplay = False
BrowserSaveYes16IsBrowserSave = True
BrowserSaveNo32IsBrowserSave = False
BrowserYes20Or combination of BrowserDisplayYes and BrowserSaveYes
BrowserNo40Or combination of BrowserDisplayNo and BrowserSaveNo
MailNewsDisplayYes64IsMailNewsDisplay = True
MailNewsDisplayNo128IsBrowserDisplay = False
MailNewsSaveYes256IsMailNewsSave = True
MailNewsSaveNo512IsMailNewsSave = False
MailNewsYes320Or combination of MailNewsDisplayYes and MailNewsSaveYes
MailNewsNo640Or combination of MailNewsDisplayNo and MailNewsSaveNo
ReadOnlyYes1024IsReadOnly = True
ReadOnlyNo2048IsReadOnly = False
SingleByte4096IsSingleByte = True
MultiByte8192IsSingleByte = False
MailAgentBodyYes16384BodyName isn not an empty string
MailAgentBodyNo32768BodyName isn an empty string
MailAgentHeaderYes65536HeaderName isn not an empty string
MailAgentHeaderNo131072HeaderName isn an empty string
MailAgentYes81920Or combination of MailAgentBodyYes and MailAgentHeaderYes
MailAgentNo163840Or combination of MailAgentBodyNo and MailAgentHeaderNo
MailYes82240Or combination of MailNewsYes and MailAgentYes
MailNo164480Or combination of MailNewsNo and MailAgentNo
InternetYes82260Or combination of MailYes and BrowserYes
InternetNo164520Or combination of MailNo and BrowserNo
NormalizedCYes262144IsAlwaysNormalized()()()()(FormC) = True
NormalizedCNo524288IsAlwaysNormalized()()()()(FormC) = False
NormalizedDYes1048576IsAlwaysNormalized()()()()(FormD) = True
NormalizedDNo2097152IsAlwaysNormalized()()()()(FormD) = False
NormalizedKCYes4194304IsAlwaysNormalized()()()()(FormKC) = True
NormalizedKCNo8388608IsAlwaysNormalized()()()()(FormKC) = False
NormalizedKDYes16777216IsAlwaysNormalized()()()()(FormKD) = True
NormalizedKDNo33554432IsAlwaysNormalized()()()()(FormKD) = False
NormalizedFullCanonicalBothYes1310720Or combination of NormalizedCYes and NormalizedDYes
NormalizedFullCanonicalBothNo2621440Or combination of NormalizedCNo and NormalizedDNo
NormalizedFullCompatibilityBothYes20971520Or combination of NormalizedKCYes and NormalizedKDYes
NormalizedFullCompatibilityBothNo41943040Or combination of NormalizedKCNo and NormalizedKDNo
NormalizedAllYes22282240Or combination of NormalizedFullCanonicalBothYes and NormalizedFullCompatibilityBothYes
NormalizedAllNo44564480Or combination of NormalizedFullCanonicalBothNo and NormalizedFullCompatibilityBothNo
NormalizedCanonicalAtLeastOneYes67108864IsAlwaysNormalized()()()()(FormC) = True -or- IsAlwaysNormalized()()()()(FormD) = True
NormalizedCanonicalAtLeastOneNo134217728IsAlwaysNormalized()()()()(FormC) = False -or- IsAlwaysNormalized()()()()(FormD) = False
NormalizedCompatibilityAtLeastOneYes268435456IsAlwaysNormalized()()()()(FormKC) = True -or- IsAlwaysNormalized()()()()(FormKD) = True
NormalizedCompatibilityAtLeastOneNo536870912IsAlwaysNormalized()()()()(FormKC) = False -or- IsAlwaysNormalized()()()()(FormKD) = False
NormalizedAtLeastOneYes1073741824IsAlwaysNormalized()()()() with one of NormalizationForm values returns True
NormalizedAtLeastOneNo2147483648IsAlwaysNormalized()()()() with one of NormalizationForm values returns False
CodePage_EQ_WindowsCodePage4294967296CodePage = WindowsCodePage
CodePage_NEQ_WindowsCodePage8589934592CodePage != WindowsCodePage
PreambleYes17179869184GetPreamble()()()().Length > 0
PrembleNo34359738368GetPreamble()()()().Length = 0
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

Remarks

This enumeration is used to either include only encodings or exclude all encodings that falle into either at least one or all groups specified

See Also