ListViewCancelMode 列挙型

定義

ListView 項目で [キャンセル] ボタンがクリックされたときにユーザーが実行していた操作の種類を判断します。

public enum class ListViewCancelMode
public enum ListViewCancelMode
type ListViewCancelMode = 
Public Enum ListViewCancelMode
継承
ListViewCancelMode

フィールド

CancelingEdit 0

ユーザーは編集操作をキャンセルしました。

CancelingInsert 1

ユーザーは挿入操作をキャンセルしました。

次の例では、 列挙を使用 ListViewCancelMode して、アイテムで取り消されている操作を確認する方法を ListView 示します。

protected void ContactsListView_ItemCanceling(object sender, ListViewCancelEventArgs e)
{
  //Check the operation that raised the event
  if (e.CancelMode == ListViewCancelMode.CancelingEdit)
  {
    // The update operation was canceled. Display the 
    // primary key of the item.
    Message.Text = "Update for the ContactID " + 
      ContactsListView.DataKeys[e.ItemIndex].Value.ToString()  + " canceled.";
  }
  else
  {
    Message.Text = "Insert operation canceled."; 
  }
}
Protected Sub ContactsListView_ItemCanceling(ByVal sender As Object, _
                                             ByVal e As ListViewCancelEventArgs)
  'Check the operation that raised the event
  If (e.CancelMode = ListViewCancelMode.CancelingEdit) Then
    ' The update operation was canceled. Display the 
    ' primary key of the item.
    Message.Text = "Update for the ContactID " & _
      ContactsListView.DataKeys(e.ItemIndex).Value.ToString() & " canceled."
  Else
    Message.Text = "Insert operation canceled."
  End If

End Sub

注釈

ListViewCancelMode列挙体は、アイテムの [キャンセル] ボタンがクリックされたときにユーザーが実行していた操作の種類をListView表すために使用されます。 ([キャンセル] ボタンは、プロパティが CommandName "Cancel" に設定されているボタンです)。

適用対象

こちらもご覧ください