GrapeCity ActiveReports for .NET 12.0J
EditModeExitEventArgs クラス
メンバ  使用例 

このクラスは、ユーザーが編集モードを終了した後に、編集されたコントロールのタイプを取得します。
オブジェクト モデル
EditModeExitEventArgs クラス
構文
'宣言
 
Public NotInheritable Class EditModeExitEventArgs 
   Inherits System.EventArgs
public sealed class EditModeExitEventArgs : System.EventArgs 
解説

編集モードは下記のコントロールに適用されます:

使用例
private void arDesigner_EditModeExit(object sender, EditModeExitEventArgs e)
        {
            if (e.Control is GrapeCity.ActiveReports.SectionReportModel.Label)
            {
                (e.Control as GrapeCity.ActiveReports.SectionReportModel.Label).Text = "評価版!";
            }
        }
Private Sub arDesigner_EditModeExit(ByVal sender As System.Object, ByVal e As GrapeCity.ActiveReports.Design.EditModeExitEventArgs) Handles arDesigner.EditModeExit
        If Typeof e.Control Is GrapeCity.ActiveReports.SectionReportModel.Label Then
            CType(e.Control, GrapeCity.ActiveReports.SectionReportModel.Label).Text = "評価版!"
        End If
    End Sub
継承階層

System.Object
   System.EventArgs
      GrapeCity.ActiveReports.Design.EditModeExitEventArgs

参照

関連項目

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

 

 


Copyright © 2003 GrapeCity inc. All rights reserved.