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

In This Topic
    Top Property (ReportItem)
    In This Topic
    Gets or sets a vertical position of the item within its container object.
    Syntax
    'Declaration
     
    Public Property Top As Length
    public Length Top {get; set;}

    Property Value

    A Length value indicating the distance from the top of the container object.
    Remarks
    The default value is 0 if not specified.
    Example
    var reportItem = new TextBox();
    reportItem.Top = new Length("2in");
    See Also