Gets or sets a value indicating whether the nodes are only can be drag drop under their parent.


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

Syntax

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

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

/** property */
public void set_EnableFixedParentDragDrop(bool value);
JScript
public function get EnableFixedParentDragDrop() : bool

public function set EnableFixedParentDragDrop(value : bool);

Property Value

true if [enable fixed parent drag drop]; otherwise, false.

See Also