ActiveReports3 Request technical support
AnchorBottom Property
See Also  Example


Anchors the line to the bottom of the containing section.

Syntax

Visual Basic (Declaration) 
Public Property AnchorBottom As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Line
Dim value As Boolean
 
instance.AnchorBottom = value
 
value = instance.AnchorBottom
C# 
public bool AnchorBottom {get; set;}

Return Value

Boolean.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
   
this.line1.AnchorBottom = true;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Line1.AnchorBottom = True
End Sub

Remarks

When set to True, this property will create a continuous line from line controls in adjacent sections.

See Also