FixedMaskedTextProviderIHandlerCreate Method |
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax void Create(
string mask,
CultureInfo culture,
bool allowPromptAsInput,
bool restrictToAscii
)
Sub Create (
mask As String,
culture As CultureInfo,
allowPromptAsInput As Boolean,
restrictToAscii As Boolean
)
abstract Create :
mask : string *
culture : CultureInfo *
allowPromptAsInput : bool *
restrictToAscii : bool -> unit
Parameters
- mask
- Type: SystemString
Mask for the input. See Mask for mask format. - culture
- Type: System.GlobalizationCultureInfo
Culture to format date/time separators and numeric placeholders. - allowPromptAsInput
- Type: SystemBoolean
If set to true, then allow the PromptChar as valid input. - restrictToAscii
- Type: SystemBoolean
If set to true, restrict input characters to ASCII only (a-z or A-Z).
See Also