AutoGeneratedField.ExtractValuesFromCell 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用指定的 IOrderedDictionary 对象中的值填充指定的 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
用于存储指定单元格的值的 IOrderedDictionary。
- cell
- DataControlFieldCell
包含要检索的值的 DataControlFieldCell。
- rowState
- DataControlRowState
DataControlRowState 值之一。
- includeReadOnly
- Boolean
如果只包括只读字段的值,则为 true
;否则为 false
。
注解
方法是 ExtractValuesFromCell 一种帮助程序方法,用于从 对象中的指定 DataControlFieldCell 对象检索 AutoGeneratedField 字段的值。
注意
此方法主要由控件开发人员使用。
该方法没有返回值。 相反,字段值是通过为参数传入的对象 IOrderedDictionary 通过引用返回的 dictionary
。 调用 方法后,循环访问 IOrderedDictionary 对象以访问字段值。
注意
若要在 对象中包含 DataControlFieldCell 只读字段值,请 true
为 includeReadOnly
参数传入 。