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

In This Topic
VerticalAlignment Property (Image)
In This Topic
Gets or sets a vertical alignment of the picture inside the image report item.
Syntax
'Declaration
 
Public Property VerticalAlignment As ExpressionInfo
 

Property Value

An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object representing the vertical alignment of the image. The default value is VerticalAlign.Top
Example
Image image = new Image();
image.VerticalAlignment = ExpressionInfo.FromString("Middle");
See Also