MESCIUS SPREAD for Windows Forms 15.0J
PrintCancelled イベント
使用例 

ユーザーが印刷ジョブを中止したときに発生します。
構文
'宣言
 
Public Event PrintCancelled As PrintCancelledEventHandler
public event PrintCancelledEventHandler PrintCancelled
解説

このイベントは、印刷ジョブが中止されたときにOnPrintCancelledメソッドによって生成されます。

個々のイベント引数の詳細については、PrintCancelledEventArgsメンバを参照してください。

使用例
次のサンプルコードは、PrintCancelledイベントを発生させます。
private void button1_Click(object sender, System.EventArgs e)
{
       FarPoint.Win.Spread.PrintInfo pi = new FarPoint.Win.Spread.PrintInfo(); 
       pi.ShowPrintDialog =true;
       fpSpread1.Sheets[0].PrintInfo = pi;
       fpSpread1.PrintSheet(0);
}

private void fpSpread1_PrintCancelled(object sender, FarPoint.Win.Spread.PrintCancelledEventArgs e)
{
       textBox1.Text="PrintCancelled";
}
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 
       Dim pi As New FarPoint.Win.Spread.PrintInfo()
       pi.ShowPrintDialog = True
       FpSpread1.Sheets(0).PrintInfo = pi
       FpSpread1.PrintSheet(0)
 End Sub

Private Sub FpSpread1_PrintCancelled(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.PrintCancelledEventArgs) Handles
FpSpread1.PrintCancelled
        TextBox1.Text = "printcancelled"
End Sub
参照

FpSpread クラス
FpSpread メンバ
PrintCancelledEventArgs クラス

開発者ガイド

印刷

 

 


© MESCIUS inc. All rights reserved.