Gets or sets the dropdown text.


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

Syntax

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

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

/** property */
public void set_DropdownText(string value);
JScript
public function get DropdownText() : String

public function set DropdownText(value : String);

Property Value

The dropdown text.

See Also