PowerTools ActiveReports for .NET 11.0J
LayoutChangingArgs クラス
メンバ  使用例 

LayoutChangingArgsクラスは、LayoutChangingイベントに必要なデータを提供します。
オブジェクト モデル
LayoutChangingArgs クラス
構文
'宣言
 
Public Class LayoutChangingArgs 
   Inherits System.EventArgs
public class LayoutChangingArgs : System.EventArgs 
使用例
Private Sub ardMain_LayoutChanging(ByVal sender As Object, ByVal e As Design.LayoutChangingArgs) Handles ardMain.LayoutChanging
    If e.Type = Design.LayoutChangeType.SectionDelete Then
        Dim Result As DialogResult
        Result = MessageBox.Show("このセクションを削除しますか。", "削除しますか。", MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1)
        If Result = DialogResult.Cancel Then
            e.AllowChange = False
        Else
            e.AllowChange = True
        End If
    End If
End Sub
private void ardMain_LayoutChanging(object sender, Grapecity.ActiveReports.Design.LayoutChangingArgs e)
{
    if (e.Type == Design.LayoutChangeType.SectionDelete) 
    { 
        DialogResult Result; 
        Result = MessageBox.Show("このセクションを削除しますか。", "削除しますか。", MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1); 
        if (Result == DialogResult.Cancel) 
        { 
            e.AllowChange = false; 
        } 
        else 
        { 
            e.AllowChange = true; 
        } 
    } 
}
継承階層

System.Object
   System.EventArgs
      GrapeCity.ActiveReports.Design.LayoutChangingArgs

参照

関連項目

LayoutChangingArgs メンバ
GrapeCity.ActiveReports.Design 名前空間

 

 


©2003-2017 GrapeCity inc. All rights reserved.