Spread Windows Forms 10.0 Product Documentation
AlignText Property (SuperEditBase)
Example 


Gets or sets the alignment of the text with respect to the alignment of the picture.
Syntax
'Declaration
 
Public Overrides Property AlignText As TextAlign
'Usage
 
Dim instance As SuperEditBase
Dim value As TextAlign
 
instance.AlignText = value
 
value = instance.AlignText
public override TextAlign AlignText {get; set;}

Property Value

TextAlign setting that determines the alignment of text
Remarks

This property is available at run time only.

Specify the horizontal alignment of the contents of the edit control by setting the AlignHorz property.

Example
This example shows the use of this property with related settings of text and a picture in the same control.
control.Text = "Alignment test";
control.Picture  = System.Drawing.Image.FromFile("d:\mail16A.ico")
control.PictureMargin = 25
control.PictureOrientation = FarPoint.Win.PictureOrientation.PictureRotate90;
control.PictureTransparencyColor = Color.Blue;
control.AlignText = FarPoint.Win.TextAlign.TextLeftPictRight;
control.TextOrientation = FarPoint.Win.TextOrientation.TextTopDown;
control.Text = "Alignment test"
control.Picture = System.Drawing.Image.FromFile("d:\mail16A.ico")
control.PictureMargin = 25
control.PictureOrientation = FarPoint.Win.PictureOrientation.PictureRotate90
control.PictureTransparencyColor = Color.Blue
control.AlignText = FarPoint.Win.TextAlign.TextLeftPictRight
control.TextOrientation = FarPoint.Win.TextOrientation.TextTopDown
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SuperEditBase Class
SuperEditBase Members
TextAlign Enumeration
AlignHorz Property

 

 


Copyright © GrapeCity, inc. All rights reserved.