Gets or sets a value indicating whether the ThreeStateCheckBox state automatically posts back to the server when clicked.

Namespace: MonoSoftware.Web.Controls
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public virtual bool AutoPostBack { get; set; }
Visual Basic
Public Overridable Property AutoPostBack As Boolean
	Get
	Set
Visual C++
public:
virtual property bool AutoPostBack {
	bool get ();
	void set (bool value);
}
F#
abstract AutoPostBack : bool with get, set
override AutoPostBack : bool with get, set

Property Value

Type: Boolean
true to automatically post the state of the ThreeStateCheckBox control to the server when it is clicked; otherwise, false. The default is false.

See Also