CheckBoxField.ExtractValuesFromCell 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用指定的 IDictionary 对象中的值填充指定的 DataControlFieldCell 对象。
public:
override void ExtractValuesFromCell(System::Collections::Specialized::IOrderedDictionary ^ dictionary, System::Web::UI::WebControls::DataControlFieldCell ^ cell, System::Web::UI::WebControls::DataControlRowState rowState, bool includeReadOnly);
public override void ExtractValuesFromCell (System.Collections.Specialized.IOrderedDictionary dictionary, System.Web.UI.WebControls.DataControlFieldCell cell, System.Web.UI.WebControls.DataControlRowState rowState, bool includeReadOnly);
override this.ExtractValuesFromCell : System.Collections.Specialized.IOrderedDictionary * System.Web.UI.WebControls.DataControlFieldCell * System.Web.UI.WebControls.DataControlRowState * bool -> unit
Public Overrides Sub ExtractValuesFromCell (dictionary As IOrderedDictionary, cell As DataControlFieldCell, rowState As DataControlRowState, includeReadOnly As Boolean)
参数
- dictionary
- IOrderedDictionary
用于存储指定单元格的值的 IDictionary。
- cell
- DataControlFieldCell
包含要检索的值的 DataControlFieldCell。
- rowState
- DataControlRowState
DataControlRowState 值之一。
- includeReadOnly
- Boolean
若要包括只读字段的值,则为 true
;否则为 false
。
注解
该方法ExtractValuesFromCell作为一种方便的方法,用于从对象中的CheckBoxField指定DataControlFieldCell对象中检索字段的值。
备注
此方法主要由控件开发人员使用。
该方法没有返回值。 而是通过 System.Collections.IDictionary 为参数传入 dictionary
的对象引用返回字段值。 调用该方法后,循环访问 System.Collections.IDictionary 对象以访问字段值。
备注
DataControlFieldCell如果对象包含只读字段值,则必须传入true``includeReadOnly
参数以包含这些值。