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