Gets or sets the ajax indicator text.


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

Syntax

Visual Basic (Declaration)
<BrowsableAttribute(True), _
 DefaultValueAttribute("Processing..."), _
 CategoryAttribute("Ajax")>

Public Property AjaxIndicatorText As String
C#
[BrowsableAttribute(True)]
[DefaultValueAttribute("Processing...")]
[CategoryAttribute("Ajax")]
public string AjaxIndicatorText { get; set; }
C++
[BrowsableAttribute(True)]
[DefaultValueAttribute(L"Processing...")]
[CategoryAttribute(L"Ajax")]
public property string AjaxIndicatorText sealed  {
    String get();
    void set(String value);
}
J#
/** @attribute BrowsableAttribute(True) */
/** @attribute DefaultValueAttribute("Processing...") */
/** @attribute CategoryAttribute("Ajax") */
/** property */
public string get_AjaxIndicatorText();

/** property */
public void set_AjaxIndicatorText(string value);
JScript
public function get AjaxIndicatorText() : String

public function set AjaxIndicatorText(value : String);

Property Value

The ajax indicator text.

See Also