SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Defines whether numeric ranges are ignored while typing characters.
Get
VB.NET | Boolean = object.IgnoreNumMinMax As Boolean |
VB | Boolean = object.IgnoreNumMinMax As Boolean |
C#.NET | bool Boolean = object.IgnoreNumMinMax; |
VC++ | VARIANT_BOOL Boolean = object->IgnoreNumMinMax; VARIANT_BOOL Boolean = object->GetIgnoreNumMinMax(); |
C | HRESULT object->get_IgnoreNumMinMax(VARIANT_BOOL* Boolean); |
Put
VB.NET | object.IgnoreNumMinMax = Boolean As Boolean |
VB | object.IgnoreNumMinMax = Boolean As Boolean |
C#.NET | bool object.IgnoreNumMinMax = Boolean; |
VC++ | VARIANT_BOOL object->IgnoreNumMinMax = Boolean; void object->PutIgnoreNumMinMax(VARIANT_BOOL Boolean); |
C | HRESULT object->put_IgnoreNumMinMax(VARIANT_BOOL Boolean); |
object
Boolean
Defines whether numeric ranges are ignored while typing characters.
Boolean | Description |
---|---|
True | Don't check numeric ranges (as defined by the Mask property) while the user types input characters. This allows entry of temporarily invalid input. An application must explicitly use the Contents.Valid property to insure that the contents are valid. |
False | Always check numeric ranges (as defined by the Mask property). This prevents entry of invalid input. |
The IgnoreNumMinMax property defines whether numeric ranges are ignored while typing characters.
This is typically used with date/time values. For example, if a date field contains 08/28/2017 and the user wants to overtype "28" and change it to "31", the initial "3" would normally be rejected, as the date would become 08/38/2017, which is invalid. By setting IgnoreNumMinMax to True, the user can change the date. The application must explicitly use the Contents.Valid property to insure that the contents are valid (typically before extracting or saving the date value).
See Also SftMask Object | Object Hierarchy