ImageGear .NET v25.2 - Updated
ImageGear.Web Assembly / ImageGear.Web.UI Namespace / PageView Class / OnMouseUp Property




In This Topic
    OnMouseUp Property (PageView)
    In This Topic
    Gets or sets user defined Javascript event handler to receive event when a new mark is being interactively created. .
    Syntax
    'Declaration
     
    <CategoryAttribute("Client PageView Control Events")>
    <DescriptionAttribute("A ser defined Javascript event handler to receive a call to the Client mouseUp Event.")>
    Public Property OnMouseUp As String
    'Usage
     
    Dim instance As PageView
    Dim value As String
     
    instance.OnMouseUp = value
     
    value = instance.OnMouseUp
    [Category("Client PageView Control Events")]
    [Description("A ser defined Javascript event handler to receive a call to the Client mouseUp Event.")]
    public string OnMouseUp {get; set;}
    [Category("Client PageView Control Events")]
    [Description("A ser defined Javascript event handler to receive a call to the Client mouseUp Event.")]
    public: __property string* get_OnMouseUp();
    public: __property void set_OnMouseUp( 
       string* value
    );
    [Category("Client PageView Control Events")]
    [Description("A ser defined Javascript event handler to receive a call to the Client mouseUp Event.")]
    public:
    property String^ OnMouseUp {
       String^ get();
       void set (    String^ value);
    }
    Remarks
    The string value is the name of the Javascript event handler name.
    See Also