ドキュメントをディスクファイルにエクスポートします。
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Overloads Sub Export( _
   ByVal  As System.String, _
   ByVal  As ExportProvider, _
   ByVal  As OutputRange, _
   ByVal  As System.Boolean _
) 
             
        
            
            '使用法
 
Dim instance As C1PrintDocument
Dim fileName As System.String
Dim exportProvider As ExportProvider
Dim outputRange As OutputRange
Dim showProgress As System.Boolean
 
instance.Export(fileName, exportProvider, outputRange, showProgress)
             
        
            
            public void Export( 
   System.string ,
   ExportProvider ,
   OutputRange ,
   System.bool 
)
             
        
             
        
            パラメータ
- fileName
 
- 出力ファイル名。ファイルの拡張子によってエクスポート形式が決まります。
 - exportProvider
 
- エクスポートプロバイダ。C1.C1Preview.Export.ExportProviders クラスにある静的エクスポートプロバイダのいずれかを使用します。
 - outputRange
 
- エクスポートするページの範囲(すべてのページをエクスポートする場合は null)。
 - showProgress
 
- 進捗ダイアログを表示するかどうかを示すフラグ。
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            参照