Represents a single character MaskPart. The character is converted to upper upon
input. .
Inheritance Hierarchy
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic class UpperMaskPart : MaskPart
Public Class UpperMaskPart
Inherits MaskPart
public ref class UpperMaskPart : public MaskPart
type UpperMaskPart =
class
inherit MaskPart
end
The UpperMaskPart type exposes the following members.
Constructors
Methods
| Name | Description |
---|
 | ToString | Returns the friendly name of the part. (Overrides ObjectToString.) |
Top
Properties
| Name | Description |
---|
 | Value | (Overrides MaskPart.Value.) |
Top
Examples
This example demonstrates how to add an
UpperMaskPart object in
the
MaskParts collection of KaxMaskedTextBox.
private void Page_Load(object sender, System.EventArgs e)
{
UpperMaskPart upperPart = new UpperMaskPart();
KaxMaskedTextBox1.MaskParts.Add(upperPart);
}
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim upperPart As New UpperMaskPart()
KaxMaskedTextBox1.MaskParts.Add(upperPart)
End Sub
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also