Gets or sets user defined Javascript event handler to receive a call to the client mouseDown event.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
<DescriptionAttribute("A user defined Javascript event handler to receive a call to the Client mouseDown Event.")>
<CategoryAttribute("Client PageView Control Events")>
Public Property OnMouseDown As String
             
        
            
            'Usage
 
Dim instance As PageView
Dim value As String
 
instance.OnMouseDown = value
 
value = instance.OnMouseDown
             
        
            
            [Description("A user defined Javascript event handler to receive a call to the Client mouseDown Event.")]
[Category("Client PageView Control Events")]
public string OnMouseDown {get; set;}
             
        
            
            [Description("A user defined Javascript event handler to receive a call to the Client mouseDown Event.")]
[Category("Client PageView Control Events")]
public: __property string* get_OnMouseDown();
public: __property void set_OnMouseDown( 
   string* value
);
             
        
            
            [Description("A user defined Javascript event handler to receive a call to the Client mouseDown Event.")]
[Category("Client PageView Control Events")]
public:
property String^ OnMouseDown {
   String^ get();
   void set (    String^ value);
}
             
        
             
        
            
            
             
            
            
            
            
            
            
            
            
            
            
            
            See Also