OnClientSelectedIndexChanged Property (ListBox<T>)
In This Topic
Occurs when the value of the SelectedIndex property changes.
Syntax
'Declaration
<JsonAttribute(True,
2,
"selectedIndexChanged")>
Public Property OnClientSelectedIndexChanged As System.String
'Usage
Dim instance As ListBox(Of T)
Dim value As System.String
instance.OnClientSelectedIndexChanged = value
value = instance.OnClientSelectedIndexChanged
[Json(true,
2,
"selectedIndexChanged")]
public System.string OnClientSelectedIndexChanged {get; set;}
public read-write property OnClientSelectedIndexChanged: System.String;
JsonAttribute(2,
"selectedIndexChanged")
public function get,set OnClientSelectedIndexChanged : System.String
[Json(true,
2,
"selectedIndexChanged")]
public: __property System.string* get_OnClientSelectedIndexChanged();
public: __property void set_OnClientSelectedIndexChanged(
System.string* value
);
[Json(true,
2,
"selectedIndexChanged")]
public:
property System.String^ OnClientSelectedIndexChanged {
System.String^ get();
void set ( System.String^ value);
}
See Also