ImageGear .NET v25.2 - Updated
ImageGear.Web Assembly / ImageGear.Web.UI Namespace / ThumbnailView Class / OnMouseDown Property




In This Topic
    OnMouseDown Property (ThumbnailView)
    In This Topic
    Gets or sets user defined Javascript event handler to receive a call to the client mouseDown event.
    Syntax
    'Declaration
     
    <CategoryAttribute("ThumbnailView Client 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 ThumbnailView
    Dim value As String
     
    instance.OnMouseDown = value
     
    value = instance.OnMouseDown
    [Category("ThumbnailView Client Events")]
    [Description("A user defined Javascript event handler to receive a call to the Client mouseDown Event.")]
    public string OnMouseDown {get; set;}
    [Category("ThumbnailView Client 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("ThumbnailView Client 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);
    }
    Remarks
    The string value is the name of the Javascript event handler name.
    See Also