Gets or sets a value indicating whether [initial dropdown open].


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

Syntax

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

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

/** property */
public void set_InitialDropdownOpen(bool value);
JScript
public function get InitialDropdownOpen() : bool

public function set InitialDropdownOpen(value : bool);

Property Value

true if [initial dropdown open]; otherwise, false.

See Also