DesignerTransactionCloseEventArgsとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > DesignerTransactionCloseEventArgsの意味・解説 

DesignerTransactionCloseEventArgs クラス

TransactionClosed イベントと TransactionClosing イベントデータ提供します

名前空間: System.ComponentModel.Design
アセンブリ: System (system.dll 内)
構文構文

<ComVisibleAttribute(True)> _
Public Class DesignerTransactionCloseEventArgs
    Inherits EventArgs
Dim instance As DesignerTransactionCloseEventArgs
[ComVisibleAttribute(true)] 
public class DesignerTransactionCloseEventArgs
 : EventArgs
[ComVisibleAttribute(true)] 
public ref class DesignerTransactionCloseEventArgs
 : public EventArgs
/** @attribute ComVisibleAttribute(true) */ 
public class DesignerTransactionCloseEventArgs
 extends EventArgs
ComVisibleAttribute(true) 
public class DesignerTransactionCloseEventArgs
 extends EventArgs
解説解説
使用例使用例

DesignerTransactionCloseEventArgs作成するコード例次に示します

' This example method creates a DesignerTransactionCloseEventArgs using
 the specified argument.
' Typically, this type of event args is created by a design mode subsystem.
            
Public Function CreateDesignerTransactionCloseEventArgs(ByVal
 commit As Boolean) As
 DesignerTransactionCloseEventArgs

    ' Creates a component changed event args with the specified arguments.
    Dim args As New DesignerTransactionCloseEventArgs(commit,
 False)

    ' Whether the transaction has been committed:  args.TransactionCommitted

    Return args
End Function
// This example method creates a DesignerTransactionCloseEventArgs using
 the specified argument.
// Typically, this type of event args is created by a design mode subsystem.
            
public DesignerTransactionCloseEventArgs CreateDesignerTransactionCloseEventArgs(bool
 commit)
{            
    // Creates a component changed event args with the specified arguments.
    DesignerTransactionCloseEventArgs args = new DesignerTransactionCloseEventArgs(commit,
 false);

    // Whether the transaction has been committed:  args.TransactionCommitted
    
    return args;            
}
public:
   // This example method creates a DesignerTransactionCloseEventArgs using
 the specified argument.
   // Typically, this type of event args is created by a design mode
 subsystem.
   DesignerTransactionCloseEventArgs^ CreateDesignerTransactionCloseEventArgs( bool
 commit )
   {
      // Creates a component changed event args with the specified arguments.
      DesignerTransactionCloseEventArgs^ args = gcnew DesignerTransactionCloseEventArgs(
 commit );

      // Whether the transaction has been committed:  args.TransactionCommitted

      return args;
   }
// This example method creates a DesignerTransactionCloseEventArgs 
// using the specified argument.
// Typically, this type of event args is created by a design mode subsystem.
            
public DesignerTransactionCloseEventArgs 
    CreateDesignerTransactionCloseEventArgs(boolean commit)
{
    // Creates a component changed event args with the specified arguments.
    DesignerTransactionCloseEventArgs args 
        = new DesignerTransactionCloseEventArgs(commit);
    // Whether the transaction has been committed:  
    // args.TransactionCommitted
    return args;
} //CreateDesignerTransactionCloseEventArgs
.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
   System.EventArgs
    System.ComponentModel.Design.DesignerTransactionCloseEventArgs
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DesignerTransactionCloseEventArgs メンバ
System.ComponentModel.Design 名前空間
DesignerTransactionCloseEventHandler

DesignerTransactionCloseEventArgs コンストラクタ (Boolean, Boolean)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

DesignerTransactionCloseEventArgs クラス新しインスタンス初期化します。

名前空間: System.ComponentModel.Design
アセンブリ: System (system.dll 内)
構文構文

Public Sub New ( _
    commit As Boolean, _
    lastTransaction As Boolean _
)
Dim commit As Boolean
Dim lastTransaction As Boolean

Dim instance As New DesignerTransactionCloseEventArgs(commit,
 lastTransaction)
public DesignerTransactionCloseEventArgs (
    bool commit,
    bool lastTransaction
)
public:
DesignerTransactionCloseEventArgs (
    bool commit, 
    bool lastTransaction
)
public DesignerTransactionCloseEventArgs (
    boolean commit, 
    boolean lastTransaction
)
public function DesignerTransactionCloseEventArgs
 (
    commit : boolean, 
    lastTransaction : boolean
)

パラメータ

commit

トランザクションコミットされたかどうかを示す値。

lastTransaction

このトランザクション最後に閉じトランザクションである場合trueそれ以外場合は、false

解説解説

committrue場合、LastTransaction の既定の値は、true です。

.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DesignerTransactionCloseEventArgs クラス
DesignerTransactionCloseEventArgs メンバ
System.ComponentModel.Design 名前空間

DesignerTransactionCloseEventArgs コンストラクタ (Boolean)

メモ : このコンストラクタは、互換性のために残されています。 旧式でない代替必要な場合は、DesignerTransactionCloseEventArgs(Boolean,Boolean) を使用してください

デザイナトランザクションに対して Commit呼び出したかどうかを示す値を指定して、DesignerTransactionCloseEventArgs クラス新しインスタンス初期化します。

名前空間: System.ComponentModel.Design
アセンブリ: System (system.dll 内)
構文構文

<ObsoleteAttribute("This constructor is obsolete. Use DesignerTransactionCloseEventArgs(bool,
 bool) instead.  http://go.microsoft.com/fwlink/?linkid=14202")>
 _
Public Sub New ( _
    commit As Boolean _
)
Dim commit As Boolean

Dim instance As New DesignerTransactionCloseEventArgs(commit)
[ObsoleteAttribute("This constructor is obsolete. Use DesignerTransactionCloseEventArgs(bool,
 bool) instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
 
public DesignerTransactionCloseEventArgs (
    bool commit
)
[ObsoleteAttribute(L"This constructor is obsolete. Use DesignerTransactionCloseEventArgs(bool,
 bool) instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
 
public:
DesignerTransactionCloseEventArgs (
    bool commit
)
/** @attribute ObsoleteAttribute("This constructor is obsolete. Use DesignerTransactionCloseEventArgs(bool,
 bool) instead.  http://go.microsoft.com/fwlink/?linkid=14202")
 */ 
public DesignerTransactionCloseEventArgs (
    boolean commit
)
ObsoleteAttribute("This constructor is obsolete. Use DesignerTransactionCloseEventArgs(bool,
 bool) instead.  http://go.microsoft.com/fwlink/?linkid=14202")
 
public function DesignerTransactionCloseEventArgs
 (
    commit : boolean
)

パラメータ

commit

トランザクションコミットされたかどうかを示す値。

.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DesignerTransactionCloseEventArgs クラス
DesignerTransactionCloseEventArgs メンバ
System.ComponentModel.Design 名前空間

DesignerTransactionCloseEventArgs コンストラクタ

DesignerTransactionCloseEventArgs クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

名前 説明
DesignerTransactionCloseEventArgs (Boolean) デザイナトランザクションに対して Commit呼び出したかどうかを示す値を指定してDesignerTransactionCloseEventArgs クラス新しインスタンス初期化します。
DesignerTransactionCloseEventArgs (Boolean, Boolean) DesignerTransactionCloseEventArgs クラス新しインスタンス初期化します。
参照参照

関連項目

DesignerTransactionCloseEventArgs クラス
DesignerTransactionCloseEventArgs メンバ
System.ComponentModel.Design 名前空間

DesignerTransactionCloseEventArgs プロパティ


パブリック プロパティパブリック プロパティ

参照参照

関連項目

DesignerTransactionCloseEventArgs クラス
System.ComponentModel.Design 名前空間
DesignerTransactionCloseEventHandler

DesignerTransactionCloseEventArgs メソッド


DesignerTransactionCloseEventArgs メンバ

TransactionClosed イベントと TransactionClosing イベントデータ提供します

DesignerTransactionCloseEventArgs データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド DesignerTransactionCloseEventArgs オーバーロードされます。 DesignerTransactionCloseEventArgs クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DesignerTransactionCloseEventArgs クラス
System.ComponentModel.Design 名前空間
DesignerTransactionCloseEventHandler


このページでは「.NET Framework クラス ライブラリ リファレンス」からDesignerTransactionCloseEventArgsを検索した結果を表示しています。
Weblioに収録されているすべての辞書からDesignerTransactionCloseEventArgsを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からDesignerTransactionCloseEventArgs を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「DesignerTransactionCloseEventArgs」の関連用語

DesignerTransactionCloseEventArgsのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



DesignerTransactionCloseEventArgsのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS