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




In This Topic
    PageViewClientId Property (ImGearThumbnailList)
    In This Topic
    Gets or sets the id of the PageView control associated with this ImGearThumbnailList control.
    Syntax
    'Declaration
     
    <CategoryAttribute("ImGearThumbnailList Properties")>
    <BrowsableAttribute(True)>
    <DefaultValueAttribute("")>
    <DescriptionAttribute("gets or sets PageView control Id where the thumbnail image when selected will be displayed.")>
    Public Property PageViewClientId As String
    'Usage
     
    Dim instance As ImGearThumbnailList
    Dim value As String
     
    instance.PageViewClientId = value
     
    value = instance.PageViewClientId
    [Category("ImGearThumbnailList Properties")]
    [Browsable(true)]
    [DefaultValue("")]
    [Description("gets or sets PageView control Id where the thumbnail image when selected will be displayed.")]
    public string PageViewClientId {get; set;}
    [Category("ImGearThumbnailList Properties")]
    [Browsable(true)]
    [DefaultValue("")]
    [Description("gets or sets PageView control Id where the thumbnail image when selected will be displayed.")]
    public: __property string* get_PageViewClientId();
    public: __property void set_PageViewClientId( 
       string* value
    );
    [Category("ImGearThumbnailList Properties")]
    [Browsable(true)]
    [DefaultValue("")]
    [Description("gets or sets PageView control Id where the thumbnail image when selected will be displayed.")]
    public:
    property String^ PageViewClientId {
       String^ get();
       void set (    String^ value);
    }

    Property Value

    A string value.
    Remarks

    This property is a string that contains the id of the PageView control that should display the image displayed in each of the thumbnails when selected.

    The default value is an empty string

    It is common for applications of a ImGearThumbnailList control to display the selected thumbnail page element in a larger viewer and this property makes it easier for you to implement that kind of application. Simply set this property to the id of the PageView. This property will not be applicable in a multi selection mode. In the absence of a PageView on a web page, it should be set to an empty string, “”.

    See Also