ListViewCancelEventArgs(Int32, ListViewCancelMode) Constructor
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.
Initializes a new instance of the ListViewCancelEventArgs class.
public:
ListViewCancelEventArgs(int itemIndex, System::Web::UI::WebControls::ListViewCancelMode cancelMode);
public ListViewCancelEventArgs (int itemIndex, System.Web.UI.WebControls.ListViewCancelMode cancelMode);
new System.Web.UI.WebControls.ListViewCancelEventArgs : int * System.Web.UI.WebControls.ListViewCancelMode -> System.Web.UI.WebControls.ListViewCancelEventArgs
Public Sub New (itemIndex As Integer, cancelMode As ListViewCancelMode)
Parameters
- itemIndex
- Int32
The index of the item that contains the Cancel button that raised the event.
- cancelMode
- ListViewCancelMode
One of the ListViewCancelMode values that indicates which operation the user canceled.
Remarks
Use this constructor to initialize a new instance of the ListViewCancelEventArgs class.
The following table shows initial property values for an instance of ListViewCancelEventArgs class.
Property | Initial value |
---|---|
CancelMode | The value of the cancelMode parameter. |
ItemIndex | The value of the itemIndex parameter. |
Note
This constructor is primarily used by control developers when they raise events.