See Also

Shape Members  | DataDynamics.ActiveReports Namespace

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

Shape Class

Prints a rectangular or oval shape on the report.

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

Object Model


Inheritance Hierarchy

System.Object
   DataDynamics.ActiveReports.ARControl
      DataDynamics.ActiveReports.Shape

Syntax

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

Example

[C#] 

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

    this.Shape1.BackColor = System.Drawing.Color.LightSteelBlue; 
    this.Shape1.LineColor = System.Drawing.Color.Navy; 
    this.Shape1.LineStyle = LineStyle.Solid; 
    this.Shape1.LineWeight = 2.0f; 
    this.Shape1.Style = ShapeType.Ellipse; 
}

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
   Me.Shape1.BackColor = System.Drawing.Color.LightSteelBlue
   Me.Shape1.LineColor = System.Drawing.Color.Navy
   Me.Shape1.LineStyle = LineStyle.Solid
   Me.Shape1.LineWeight = 2.0F
   Me.Shape1.Style = ShapeType.Ellipse
End Sub

See Also

Shape Members  | DataDynamics.ActiveReports Namespace

 

 


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