Visual Basic (Declaration)
Protected Property RequiresDataBinding As Boolean
Dim value As Boolean
value = Me.RequiresDataBinding
Me.RequiresDataBinding = value
protected bool RequiresDataBinding { get; set; }
protected:
property bool RequiresDataBinding {
bool get ();
void set (bool value);
}
/** @property */
protected boolean get_RequiresDataBinding()
/** @property */
protected void set_RequiresDataBinding(boolean value)
protected function get RequiresDataBinding () : boolean
protected function set RequiresDataBinding (value : boolean)
<asp:BaseDataBoundControl RequiresDataBinding="True|False" />
Property Value
Type:
System..::.Boolean
The returned value is true if the data-bound control's DataBind method should be called before the control is rendered; otherwise, the value is false.