Gets or sets a value indicating whether [auto post back].


Namespace: Geekees.Common.Controls
Assembly: ASTreeView (in ASTreeView.dll)

Syntax

Visual Basic (Declaration)
<DefaultValueAttribute(False), _
 CategoryAttribute("Configuration"), _
 BrowsableAttribute(True)>

Public Property AutoPostBack As Boolean
C#
[DefaultValueAttribute(False)]
[CategoryAttribute("Configuration")]
[BrowsableAttribute(True)]
public bool AutoPostBack { get; set; }
C++
[DefaultValueAttribute(False)]
[CategoryAttribute(L"Configuration")]
[BrowsableAttribute(True)]
public property bool AutoPostBack sealed  {
    bool get();
    void set(bool value);
}
J#
/** @attribute DefaultValueAttribute(False) */
/** @attribute CategoryAttribute("Configuration") */
/** @attribute BrowsableAttribute(True) */
/** property */
public bool get_AutoPostBack();

/** property */
public void set_AutoPostBack(bool value);
JScript
public function get AutoPostBack() : bool

public function set AutoPostBack(value : bool);

Property Value

true if [auto post back]; otherwise, false.

See Also