Gets or sets the ajax response start tag.


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

Syntax

Visual Basic (Declaration)
<DefaultValueAttribute("<!--ast_ajax_start-->"), _
 BrowsableAttribute(True), _
 CategoryAttribute("Configuration")>

Public Property AjaxResponseStartTag As String
C#
[DefaultValueAttribute("<!--ast_ajax_start-->")]
[BrowsableAttribute(True)]
[CategoryAttribute("Configuration")]
public string AjaxResponseStartTag { get; set; }
C++
[DefaultValueAttribute(L"<!--ast_ajax_start-->")]
[BrowsableAttribute(True)]
[CategoryAttribute(L"Configuration")]
public property string AjaxResponseStartTag sealed  {
    String get();
    void set(String value);
}
J#
/** @attribute DefaultValueAttribute("<!--ast_ajax_start-->") */
/** @attribute BrowsableAttribute(True) */
/** @attribute CategoryAttribute("Configuration") */
/** property */
public string get_AjaxResponseStartTag();

/** property */
public void set_AjaxResponseStartTag(string value);
JScript
public function get AjaxResponseStartTag() : String

public function set AjaxResponseStartTag(value : String);

Property Value

The ajax response start tag.

See Also