Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

57 lines
1.8 KiB
C#

//------------------------------------------------------------------------------
// <copyright file="ListViewDeleteEventArgs.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Collections.Specialized;
using System.ComponentModel;
namespace System.Web.UI.WebControls {
public class ListViewDeleteEventArgs : CancelEventArgs {
private int _itemIndex;
private OrderedDictionary _values;
private OrderedDictionary _keys;
public ListViewDeleteEventArgs(int itemIndex) : base(false) {
_itemIndex = itemIndex;
}
/// <devdoc>
/// <para>Gets the int argument to the command posted to the <see cref='System.Web.UI.WebControls.ListView'/>. This property is read-only.</para>
/// </devdoc>
public int ItemIndex {
get {
return _itemIndex;
}
}
/// <devdoc>
/// <para>Gets a keyed list to populate with updated row values. This property is read-only.</para>
/// </devdoc>
public IOrderedDictionary Keys {
get {
if (_keys == null) {
_keys = new OrderedDictionary();
}
return _keys;
}
}
/// <devdoc>
/// <para>Gets a OrderedDictionary to populate with updated row values. This property is read-only.</para>
/// </devdoc>
public IOrderedDictionary Values {
get {
if (_values == null) {
_values = new OrderedDictionary();
}
return _values;
}
}
}
}