Click or drag to resize
LowerMaskPart Class
Represents a single character MaskPart. The character is converted to lower upon input.
Inheritance Hierarchy
SystemObject
  Kettic.AspNet.ControlsMaskPart
    Kettic.AspNet.ControlsLowerMaskPart

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public class LowerMaskPart : MaskPart

The LowerMaskPart type exposes the following members.

Constructors
  NameDescription
Public methodLowerMaskPart
Top
Methods
  NameDescription
Public methodToString
Returns the friendly name of the part.
(Overrides ObjectToString.)
Top
Examples
This example demonstrates how to add a LowerMaskPart object in the MaskParts property of KaxMaskedTextBox.
private void Page_Load(object sender, System.EventArgs e)
{ 
    LowerMaskPart lowerPart = new LowerMaskPart();
    KaxMaskedTextBox1.MaskParts.Add(lowerPart);
}
See Also