ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Image Class / HorizontalAlignment Property
Example

In This Topic
    HorizontalAlignment Property (Image)
    In This Topic
    Gets or sets a horizontal alignment of the picture inside the image report item.
    Syntax
    'Declaration
     
    Public Property HorizontalAlignment As ExpressionInfo
    public ExpressionInfo HorizontalAlignment {get; set;}

    Property Value

    An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object representing the horizontal alignment of the image. The default value is HorizontalAlignment.Left
    Example
    Image image = new Image();
    image.HorizontalAlignment = ExpressionInfo.FromString("Right");
    See Also