PowerTools ActiveReports for .NET 9.0J
AddScriptReference メソッド
使用例 

スクリプトが実行される時にスクリプト内でアセンブリが使用できるように、そのアセンブリ名を指定。
指定したアセンブリの参照を追加して、スクリプトの実行時にロードされるようにします。
構文
'宣言
 
Public Sub AddScriptReference( _
   ByVal scriptRef As String _
) 
public void AddScriptReference( 
   string scriptRef
)

パラメータ

scriptRef
スクリプトが実行される時にスクリプト内でアセンブリが使用できるように、そのアセンブリ名を指定。
解説

ActiveReportsは、アプリケーションで参照されているアセンブリをロードします。このメソッドは、レポートを実行するアプリケーションの一部ではなく、スクリプト内で使用するアセンブリを追加するために使用できます。

使用例
private void runReport() 
{ 
      SectionReport1 rpt = new SectionReport1(); 
      rpt.AddScriptReference("System.Data"); 
      rpt.Run(); 
      this.viewer1.Document = rpt.Document; 
}
Private Sub runReport() 
      Dim rpt As New SectionReport1() 
      rpt.AddScriptReference("System.Data") 
      rpt.Run() 
      Me.viewer1.Document = rpt.Document 
End Sub
参照

関連項目

SectionReport クラス
SectionReport メンバ
AddNamedItem メソッド
Script プロパティ
AddCode メソッド

 

 


©2003-2015 GrapeCity inc. All rights reserved.