Gets or sets the alignment of the text with respect to the alignment of the picture.
Syntax
Visual Basic (Declaration) | |
---|
Public Overrides Property AlignText As TextAlign |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SuperEditBase
Dim value As TextAlign
instance.AlignText = value
value = instance.AlignText |
C# | |
---|
public override TextAlign AlignText {get; set;} |
Property Value
TextAlign setting that determines the alignment of text
Remarks
Example
This example shows the use of this property with related settings of text and a picture in the same control.
C# | Copy Code |
---|
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;
|
Visual Basic | Copy Code |
---|
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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also