ListView.ExtractItemValues(IOrderedDictionary, ListViewItem, Boolean) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
擷取指定之項目中宣告的每一個欄位的值,並儲存在指定的 IOrderedDictionary 物件中。
public:
virtual void ExtractItemValues(System::Collections::Specialized::IOrderedDictionary ^ itemValues, System::Web::UI::WebControls::ListViewItem ^ item, bool includePrimaryKey);
public virtual void ExtractItemValues (System.Collections.Specialized.IOrderedDictionary itemValues, System.Web.UI.WebControls.ListViewItem item, bool includePrimaryKey);
abstract member ExtractItemValues : System.Collections.Specialized.IOrderedDictionary * System.Web.UI.WebControls.ListViewItem * bool -> unit
override this.ExtractItemValues : System.Collections.Specialized.IOrderedDictionary * System.Web.UI.WebControls.ListViewItem * bool -> unit
Public Overridable Sub ExtractItemValues (itemValues As IOrderedDictionary, item As ListViewItem, includePrimaryKey As Boolean)
參數
- itemValues
- IOrderedDictionary
用於儲存欄位值的字典物件。
- item
- ListViewItem
要擷取欄位值的來源 ListViewItem 物件。
- includePrimaryKey
- Boolean
true
表示包括主索引鍵欄位,否則為 false
。
例外狀況
itemValues
為 null
。
item
不是 ListViewDataItem 物件。
備註
方法是 ExtractItemValues 協助程式方法,由 ListView 控件呼叫,以擷取 中 item
宣告之每個欄位的值。 您可以使用 參數來指定擷取的值是否包含索引鍵欄位 includePrimaryKey
。