MaskedTextBox.TextAlign Property
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.
Gets or sets how text is aligned in a masked text box control.
public:
property System::Windows::Forms::HorizontalAlignment TextAlign { System::Windows::Forms::HorizontalAlignment get(); void set(System::Windows::Forms::HorizontalAlignment value); };
public System.Windows.Forms.HorizontalAlignment TextAlign { get; set; }
member this.TextAlign : System.Windows.Forms.HorizontalAlignment with get, set
Public Property TextAlign As HorizontalAlignment
Property Value
One of the HorizontalAlignment enumeration values that specifies how text is aligned relative to the control. The default is Left.
Exceptions
The value assigned to this property is not of type HorizontalAlignment.
Remarks
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.