| Visual Basic (Declaration) | |
|---|---|
Public Property AnchorBottom As System.Boolean | |
| C# | |
|---|---|
public System.bool AnchorBottom {get; set;} | |
Property Value
Boolean.When set to True, this property will create a continuous line from line controls in adjacent sections.
| C# | Copy Code |
|---|---|
private void detail_Format(object sender, System.EventArgs eArgs) { this.line1.AnchorBottom = true; } | |
| Visual Basic | Copy Code |
|---|---|
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.Line1.AnchorBottom = True End Sub | |