Gets or sets a value indicating whether to escape the html tag for node editing.


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

Syntax

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

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

/** property */
public void set_EnableEscapeInput(bool value);
JScript
public function get EnableEscapeInput() : bool

public function set EnableEscapeInput(value : bool);

Property Value

true if [enable escape input]; otherwise, false.

See Also