Gets or sets the ajax response end tag.


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

Syntax

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

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

/** property */
public void set_AjaxResponseEndTag(string value);
JScript
public function get AjaxResponseEndTag() : String

public function set AjaxResponseEndTag(value : String);

Property Value

The ajax response end tag.

See Also