Spread Windows Forms 7.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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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