ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / Line Class / AnchorBottom Property
Example

In This Topic
    AnchorBottom Property
    In This Topic
    Anchors the line to the bottom of the containing section.
    Syntax
    'Declaration
     
    Public Property AnchorBottom As Boolean
    public bool AnchorBottom {get; set;}

    Property Value

    Boolean.
    Remarks
    When set to True, this property will create a continuous line from line controls in adjacent sections.
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)
    {
        this.line1.AnchorBottom = true;
    }
    Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
        Me.Line1.AnchorBottom = True
    End Sub
    See Also