Version

ButtonMouseDown Property

Gets sets name of javascript function which is called when html element of minus or plus button gets mousedown event of a browser.
Syntax
'Declaration
 
Public Property ButtonMouseDown As String
public string ButtonMouseDown {get; set;}
Example
// The client event ButtonMouseDown takes two parameters sender and e
// sender  is the object which is raising the event
// e is the SliderButtonMouseEventArgs

  function WebSlider1_ButtonMouseDown(sender, e) {

      var slider = $find("WebSlider1");

      //Gets the slider value
      var value = slider.getValue(0);

      //Checks which button is involved in the event.
      //True for minus button and false for plus button.
      var button = e.isMinus();

      if (button == true) {
          window.status = "Minus button is clicked";
      }
      else {
          window.status = "Plus button is clicked";
      }

  }
Me.WebSlider1.ClientEvents.ButtonMouseDown = "WebSlider1_ButtonMouseDown"
this.WebSlider1.ClientEvents.ButtonMouseDown = "WebSlider1_ButtonMouseDown";
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also