Gets or sets a value indicating whether to enable ajax on edit and delete.


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

Syntax

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

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

/** property */
public void set_EnableAjaxOnEditDelete(bool value);
JScript
public function get EnableAjaxOnEditDelete() : bool

public function set EnableAjaxOnEditDelete(value : bool);

Property Value

true if [enable ajax on edit delete]; otherwise, false.

See Also