Spread Windows Forms 6.0 Product Documentation
AlignText Property
See Also  Example Support Options
FarPoint.Win Assembly > FarPoint.Win Namespace > SuperEditBase Class : AlignText Property


Glossary Item Box

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

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.
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 BasicCopy 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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.