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

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

    Property Value

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