Gets or sets a value indicating whether to display a textarea when editing nodes.


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

Syntax

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

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

/** property */
public void set_EnableMultiLineEdit(bool value);
JScript
public function get EnableMultiLineEdit() : bool

public function set EnableMultiLineEdit(value : bool);

Property Value

true if [enable multi line edit]; otherwise, false.

See Also