Interface INumberSettings
- Namespace
- Acuit.Pinpoint.Workstation
- Assembly
- Acuit.Pinpoint.Workstation.Interfaces.dll
Number settings (i.e., for unit or component serial and model numbers).
public interface INumberSettings
Properties
ForceUppercase
Gets whether numbers should be forced to uppercase.
bool ForceUppercase { get; }
Property Value
Remarks
This is applied before checking the valid/invalid patterns.
InvalidNumber
Gets the pattern for invalid numbers.
string InvalidNumber { get; }
Property Value
Remarks
This will be null if no pattern has been specified. The ForceUppercase setting is applied before checking this pattern.
ValidNumber
Gets the pattern for valid numbers.
string ValidNumber { get; }
Property Value
Remarks
This will be null if no pattern has been specified. The ForceUppercase setting is applied before checking this pattern.