CurrentChangingEventArgs Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CurrentChangingEventArgs() |
Initializes a new instance of the CurrentChangingEventArgs class. |
CurrentChangingEventArgs(Boolean) |
Initializes a new instance of the CurrentChangingEventArgs class. |
CurrentChangingEventArgs()
Initializes a new instance of the CurrentChangingEventArgs class.
public:
CurrentChangingEventArgs();
CurrentChangingEventArgs();
public CurrentChangingEventArgs();
function CurrentChangingEventArgs()
Public Sub New ()
See also
Applies to
CurrentChangingEventArgs(Boolean)
Initializes a new instance of the CurrentChangingEventArgs class.
public:
CurrentChangingEventArgs(bool isCancelable);
CurrentChangingEventArgs(bool const& isCancelable);
public CurrentChangingEventArgs(bool isCancelable);
function CurrentChangingEventArgs(isCancelable)
Public Sub New (isCancelable As Boolean)
Parameters
- isCancelable
-
Boolean
bool
true if the event can be canceled; false if the event cannot be canceled.
Remarks
If the IsCancelable property value is false, setting the Cancel property to true will throw an InvalidOperationException
.