Spread Windows Forms 13.0 Product Documentation
FarPoint.Win Assembly / FarPoint.Win Namespace / SuperEditBase Class / AlignText Property
Example


In This Topic
    AlignText Property (SuperEditBase)
    In This Topic
    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
    
    See Also