ActiveReports 12
Label Class
Members  Example 

GrapeCity.ActiveReports.v12 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace : Label Class

Prints static text on the report.

Object Model
Label Class
Syntax
'Declaration
 
Public NotInheritable Class Label 
   Inherits ARControl
public sealed class Label : ARControl 
Example
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.WrapMode = GrapeCity.ActiveReports.Document.Section.WrapMode.NoWrap;
    //With the properties above set, the Style string would be:
    //this.label1.Style = color: Brown; background-color: BlanchedAlmond; font-size: 12pt;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.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.WrapMode = GrapeCity.ActiveReports.Document.Section.WrapMode.NoWrap
   'With the properties above set, the Style string would be:
   'this.Label1.Style = color: Brown; background-color: BlanchedAlmond; font-size: 12pt;
End Sub
Inheritance Hierarchy

System.Object
   GrapeCity.ActiveReports.SectionReportModel.ARControl
      GrapeCity.ActiveReports.SectionReportModel.Label

See Also

Reference

Label Members
GrapeCity.ActiveReports.SectionReportModel Namespace