GrapeCity.ActiveReports.v11 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > TextBox クラス : ClassName プロパティ |
コントロールの外観を設定するスタイルクラスの名前を表す文字列値。デフォルトはNormalです。
レポートのスタイルシートの定義済みスタイルを使用したり、新しいスタイルを追加したりできます。
private void detail_Format(object sender, System.EventArgs eArgs) { this.textBox1.ClassName = "Normal"; this.textBox1.OutputFormat = null; }
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.TextBox1.ClassName = "Normal" Me.TextBox1.OutputFormat = Nothing End Sub