PowerTools ActiveReports for .NET 9.0J > ActiveReportsユーザーガイド > 概念 > セクションレポートの概念 > スタイルの再利用 |
ActiveReports for .NET 9.0Jでは、レポートデザインのスタイルシートを外部ファイルとして保存できます。複数のレポートでスタイルの再利用でき、作業効率がアップします。
注意: 使用中のスタイルシートは上書きされます。現在のスタイルを再利用する場合には、読み込む前に保存してください。 |
Visual Basic
Visual Basicコード |
コードのコピー
|
---|---|
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Form1.Load
Dim rpt As New SectionReport1
rpt.SaveStyles(Application.StartupPath + "\MyReportStyle.reportstyle")
End Sub
|
C#
C#コード |
コードのコピー
|
---|---|
private void Form1_Load(object sender, System.EventArgs e) { SectionReport1 rpt = new SectionReport1(); rpt.SaveStyles(Application.StartupPath + "\\MyReportStyle.reportstyle"); } |
以下に、サンプルコードを示します。
Visual Basic
Visual Basicコード |
コードのコピー
|
---|---|
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Form1.Load
Dim rpt As New SectionReport1
rpt.LoadStyles(Application.StartupPath + "\MyReportStyle.reportstyle")
rpt.Run()
Me.Viewer1.Document = rpt.Document
End Sub
|
C#
C#コード |
コードのコピー
|
---|---|
private void Form1_Load(object sender, System.EventArgs e)
{
SectionReport1 rpt = new SectionReport1();
rpt.LoadStyles(Application.StartupPath + "\\MyReportStyle.reportstyle");
rpt.Run();
this.viewer1.Document=rpt.Document;
}
|