ImageGear .NET v25.2 - Updated
ImageGear.Web Assembly / ImageGear.Web.UI Namespace / ImGearThumbnailList Class / OnPageAddFailed Property




In This Topic
    OnPageAddFailed Property
    In This Topic
    Gets or sets user defined Javascript event handler to receive a call to the client 'pageAddFailed' event.
    Syntax
    'Declaration
     
    <CategoryAttribute("Client ImGearThumbnailList Control Events")>
    <DefaultValueAttribute("")>
    <DescriptionAttribute("A user defined Javascript event handler to receive a call to the Client addPageFailed Event.")>
    Public Property OnPageAddFailed As String
    'Usage
     
    Dim instance As ImGearThumbnailList
    Dim value As String
     
    instance.OnPageAddFailed = value
     
    value = instance.OnPageAddFailed
    [Category("Client ImGearThumbnailList Control Events")]
    [DefaultValue("")]
    [Description("A user defined Javascript event handler to receive a call to the Client addPageFailed Event.")]
    public string OnPageAddFailed {get; set;}
    [Category("Client ImGearThumbnailList Control Events")]
    [DefaultValue("")]
    [Description("A user defined Javascript event handler to receive a call to the Client addPageFailed Event.")]
    public: __property string* get_OnPageAddFailed();
    public: __property void set_OnPageAddFailed( 
       string* value
    );
    [Category("Client ImGearThumbnailList Control Events")]
    [DefaultValue("")]
    [Description("A user defined Javascript event handler to receive a call to the Client addPageFailed Event.")]
    public:
    property String^ OnPageAddFailed {
       String^ get();
       void set (    String^ value);
    }

    Property Value

    string value
    Remarks
    The string value is the name of the Javascript event handler name. This event will be raised when the client control fails to add a page to the ThumbnailList.
    See Also