Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DesignerTransactionCloseEventArgs.cs
Go to the documentation of this file.
1
namespace
System.ComponentModel.Design
;
2
3
public
class
DesignerTransactionCloseEventArgs
:
EventArgs
4
{
5
public
bool
TransactionCommitted
{
get
; }
6
7
public
bool
LastTransaction
{
get
; }
8
9
[Obsolete(
"This constructor has been deprecated. Use DesignerTransactionCloseEventArgs(bool, bool) instead."
)]
10
public
DesignerTransactionCloseEventArgs
(
bool
commit)
11
: this(commit, lastTransaction: true)
12
{
13
}
14
15
public
DesignerTransactionCloseEventArgs
(
bool
commit,
bool
lastTransaction)
16
{
17
TransactionCommitted
= commit;
18
LastTransaction
= lastTransaction;
19
}
20
}
System.ComponentModel.Design.DesignerTransactionCloseEventArgs.DesignerTransactionCloseEventArgs
DesignerTransactionCloseEventArgs(bool commit)
Definition
DesignerTransactionCloseEventArgs.cs:10
System.ComponentModel.Design.DesignerTransactionCloseEventArgs.DesignerTransactionCloseEventArgs
DesignerTransactionCloseEventArgs(bool commit, bool lastTransaction)
Definition
DesignerTransactionCloseEventArgs.cs:15
System.ComponentModel.Design.DesignerTransactionCloseEventArgs.TransactionCommitted
bool TransactionCommitted
Definition
DesignerTransactionCloseEventArgs.cs:5
System.ComponentModel.Design.DesignerTransactionCloseEventArgs.LastTransaction
bool LastTransaction
Definition
DesignerTransactionCloseEventArgs.cs:7
System.ComponentModel.Design.DesignerTransactionCloseEventArgs
Definition
DesignerTransactionCloseEventArgs.cs:4
System.EventArgs
Definition
EventArgs.cs:8
System.ComponentModel.Design
Definition
DesignerSerializerAttribute.cs:1
source
System.ComponentModel.TypeConverter
System.ComponentModel.Design
DesignerTransactionCloseEventArgs.cs
Generated by
1.10.0