BoundField.GetValue(Control) 方法

定义

检索绑定到 BoundField 对象的字段值。

protected:
 virtual System::Object ^ GetValue(System::Web::UI::Control ^ controlContainer);
protected virtual object GetValue (System.Web.UI.Control controlContainer);
abstract member GetValue : System.Web.UI.Control -> obj
override this.GetValue : System.Web.UI.Control -> obj
Protected Overridable Function GetValue (controlContainer As Control) As Object

参数

controlContainer
Control

字段值的容器。

返回

Object

绑定到 BoundField 的字段值。

例外

controlContainer 参数指定的容器为 null

  • 或 - controlContainer 参数指定的容器没有数据项。

  • 或 - 找不到该数据字段。

注解

该方法 GetValue 是用于确定字段值的帮助程序方法。 BoundField如果对象在设计器中显示,并且不能在设计时确定字段值,则返回方法GetDesignTimeValue返回的值,而不是实际字段值。

备注

此方法主要由控件开发人员使用。

继承者说明

扩展 BoundField 类时,可以重写此方法以提供自定义例程来确定字段的值。

适用于

另请参阅