Prints static text on the report.
For a list of all members of this type, see Label members.
Object Model
Inheritance Hierarchy
System.Object
DataDynamics.ActiveReports.ARControl
DataDynamics.ActiveReports.Label
Syntax
[Visual Basic]
Public NotInheritable Class Label
Inherits ARControl
Example
[C#]
private void Detail_Format(object sender, System.EventArgs eArgs) { this.Label1.Alignment = TextAlignment.Left; this.Label1.Angle = 0; this.Label1.BackColor = System.Drawing.Color.BlanchedAlmond; this.Label1.ClassName = "Normal"; this.Label1.Font = new System.Drawing.Font("Arial",12); this.Label1.ForeColor = System.Drawing.Color.Brown; this.Label1.HyperLink = "mailto:support@company.com"; this.Label1.MultiLine = false; this.Label1.Text = "Label"; this.Label1.VerticalAlignment = VerticalTextAlignment.Top; this.Label1.WordWrap = true; //With the properties above set, the Style string would be: //this.Label1.Style = color: Brown; background-color: BlanchedAlmond; font-size: 12pt; } |
[Visual Basic]
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
Me.Label1.Alignment = TextAlignment.Left
Me.Label1.Angle = 0
Me.Label1.BackColor = System.Drawing.Color.BlanchedAlmond
Me.Label1.ClassName = "Normal"
Me.Label1.Font = New System.Drawing.Font("Arial", 12)
Me.Label1.ForeColor = System.Drawing.Color.Brown
Me.Label1.HyperLink = "mailto:support@company.com"
Me.Label1.MultiLine = False
Me.Label1.Text = "Label"
Me.Label1.VerticalAlignment = VerticalTextAlignment.Top
Me.Label1.WordWrap = True
End Sub |
See Also
Label Members
| DataDynamics.ActiveReports Namespace
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.