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




In This Topic
    OnPageOpened Property (ThumbnailView)
    In This Topic
    Gets or sets user defined Javascript event handler to receive a call to the client pageOpened event.
    Syntax
    'Declaration
     
    <CategoryAttribute("ThumbnailView Client Events")>
    <DescriptionAttribute("A user defined Javascript event handler to receive a call to the Client pageOpened Event.")>
    Public Property OnPageOpened As String
    'Usage
     
    Dim instance As ThumbnailView
    Dim value As String
     
    instance.OnPageOpened = value
     
    value = instance.OnPageOpened
    [Category("ThumbnailView Client Events")]
    [Description("A user defined Javascript event handler to receive a call to the Client pageOpened Event.")]
    public string OnPageOpened {get; set;}
    [Category("ThumbnailView Client Events")]
    [Description("A user defined Javascript event handler to receive a call to the Client pageOpened Event.")]
    public: __property string* get_OnPageOpened();
    public: __property void set_OnPageOpened( 
       string* value
    );
    [Category("ThumbnailView Client Events")]
    [Description("A user defined Javascript event handler to receive a call to the Client pageOpened Event.")]
    public:
    property String^ OnPageOpened {
       String^ get();
       void set (    String^ value);
    }
    Remarks
    The string value is the name of the Javascript event handler name.

    This event will be raised after the image attributes have been received from the server. At this point, the previous image will be discarded. The new current image may not have been displayed yet, but that will occur soon

    See Also