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;
//上記のプロパティを設定した後、以下のStyle文字列を設定します。
//this.label1.Style = color: Brown; background-color: BlanchedAlmond; font-size: 12pt;
}