Gets or sets a value indicating whether client side should save the whole tree state on every change.


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

Syntax

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

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

/** property */
public void set_EnableSaveStateEveryStep(bool value);
JScript
public function get EnableSaveStateEveryStep() : bool

public function set EnableSaveStateEveryStep(value : bool);

Property Value

true if [enable save state every step]; otherwise, false.

See Also