See Also

Line Members  | DataDynamics.ActiveReports Namespace

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

Line Class

Prints a line on the report.

For a list of all members of this type, see Line members.

Object Model


Inheritance Hierarchy

System.Object
   DataDynamics.ActiveReports.ARControl
      DataDynamics.ActiveReports.Line

Syntax

[Visual Basic]
Public NotInheritable Class Line    Inherits ARControl
[C#]
public sealed class Line : ARControl

Example

[C#] 

private void Detail_Format(object sender, System.EventArgs eArgs) 

    this.Line1.LineColor = System.Drawing.Color.Blue; 
    this.Line1.LineStyle = LineStyle.DashDot; 
    this.Line1.LineWeight = 2.0f; 
    this.Line1.X1 = 1.0f; 
    this.Line1.X2 = 4.0f; 
    this.Line1.Y1 = 0.5f; 
    this.Line1.Y2 = 0.5f; 
}

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
    Me.Line1.LineColor = System.Drawing.Color.Blue
    Me.Line1.LineStyle = LineStyle.DashDot
    Me.Line1.LineWeight = 2.0F
    Me.Line1.X1 = 1.0F
    Me.Line1.X2 = 4.0F
    Me.Line1.Y1 = 0.5F
    Me.Line1.Y2 = 0.5F
End Sub

See Also

Line Members  | DataDynamics.ActiveReports Namespace

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.