MaskDescriptor Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines a set of members for derived classes to provide options for the masked text box UI type editor.
public ref class MaskDescriptor abstract
public abstract class MaskDescriptor
type MaskDescriptor = class
Public MustInherit Class MaskDescriptor
- Inheritance
-
MaskDescriptor
Remarks
The MaskDescriptor abstract class defines the common set of properties that all mask descriptors must implement. You can use mask descriptors to create predefined mask options for use in the UI type editor for the MaskedTextBox. For example, Visual Studio provides predefined masks for data such as the Postal Code, time, different date formats, and telephone number. All predefined masks will be associated with the MaskedTextProvider parsing engine.
You can discover MaskDescriptor types at design time by querying the ITypeDiscoveryService service provider.
Constructors
MaskDescriptor() |
Initializes a new instance of the MaskDescriptor class. |
Properties
Culture |
Gets the CultureInfo representing the locale the mask is authored for. |
Mask |
Gets the mask being defined. |
Name |
Gets the user-friendly name of the mask. |
Sample |
Gets a sample of a formatted string for the mask. |
ValidatingType |
Gets the type providing validation associated with the mask. |
Methods
Equals(Object) |
Determines whether the specified MaskDescriptor is equal to the current MaskDescriptor. |
GetHashCode() |
Serves as a hash function for a particular type. |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
IsValidMaskDescriptor(MaskDescriptor) |
Returns a value indicating whether the specified mask descriptor is valid and can be added to the masks list. |
IsValidMaskDescriptor(MaskDescriptor, String) |
Returns a value indicating whether the specified mask descriptor is valid, and provides an error description if it is not valid. |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. |