MaskedTextBox::TextAlign Property
.NET Framework (current version)
Gets or sets how text is aligned in a masked text box control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: property HorizontalAlignment TextAlign { HorizontalAlignment get(); void set(HorizontalAlignment value); }
Property Value
Type: System.Windows.Forms::HorizontalAlignmentOne of the HorizontalAlignment enumeration values that specifies how text is aligned relative to the control. The default is Left.
| Exception | Condition |
|---|---|
| InvalidEnumArgumentException | The value assigned to this property is not of type HorizontalAlignment. |
You can use the TextAlign property to align the displayed text within a MaskedTextBox to match the layout of visual elements on your form. For example, if your controls are all located on the right side of the form, you can set the TextAlign property to Right, and the text will be aligned with the right side of the control instead of the default left alignment.
.NET Framework
Available since 2.0
Available since 2.0
Show: