23 references to MaskFormat
System.Windows.Forms (22)
_generated\1\Validation.cs (2)
455
public static void Validate(System.Windows.Forms.
MaskFormat
enumToValidate, string parameterName = "value")
459
ReportEnumValidationError(parameterName, intValue, typeof(System.Windows.Forms.
MaskFormat
));
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (20)
372
[DefaultValue(
MaskFormat
.IncludeLiterals)]
373
public
MaskFormat
CutCopyMaskFormat
381
return
MaskFormat
.IncludePromptAndLiterals;
384
return
MaskFormat
.IncludePrompt;
389
return
MaskFormat
.IncludeLiterals;
392
return
MaskFormat
.ExcludePromptAndLiterals;
400
if (value ==
MaskFormat
.IncludePrompt)
405
else if (value ==
MaskFormat
.IncludeLiterals)
412
bool include = value ==
MaskFormat
.IncludePromptAndLiterals;
1277
[DefaultValue(
MaskFormat
.IncludeLiterals)]
1278
public
MaskFormat
TextMaskFormat
1286
return
MaskFormat
.IncludePromptAndLiterals;
1289
return
MaskFormat
.IncludePrompt;
1294
return
MaskFormat
.IncludeLiterals;
1297
return
MaskFormat
.ExcludePromptAndLiterals;
1314
if (value ==
MaskFormat
.IncludePrompt)
1319
else if (value ==
MaskFormat
.IncludeLiterals)
1326
bool include = value ==
MaskFormat
.IncludePromptAndLiterals;
1781
bool includePrompt = (CutCopyMaskFormat &
MaskFormat
.IncludePrompt) != 0;
1782
bool includeLiterals = (CutCopyMaskFormat &
MaskFormat
.IncludeLiterals) != 0;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\MaskedTextBoxTextEditorDropDown.cs (1)
25
_cloneMtb.TextMaskFormat =
MaskFormat
.IncludePromptAndLiterals;