Share via


CurrentChangingEventArgs Constructors

Definition

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.

Applies to