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




In This Topic
    SelectedPages Property (ImGearThumbnailList)
    In This Topic
    Gets a collection of ImGearSelectionPage objects containing information about pages required to be selected at startup.
    Syntax
    'Declaration
     
    <CategoryAttribute("ImGearThumbnailList Properties")>
    <BrowsableAttribute(False)>
    <DescriptionAttribute(" Gets or sets comma separated string containing pages required to be selected at startup.")>
    Public ReadOnly Property SelectedPages As Collection(Of ImGearSelectionPage)
    'Usage
     
    Dim instance As ImGearThumbnailList
    Dim value As Collection(Of ImGearSelectionPage)
     
    value = instance.SelectedPages
    [Category("ImGearThumbnailList Properties")]
    [Browsable(false)]
    [Description(" Gets or sets comma separated string containing pages required to be selected at startup.")]
    public Collection<ImGearSelectionPage> SelectedPages {get;}
    [Category("ImGearThumbnailList Properties")]
    [Browsable(false)]
    [Description(" Gets or sets comma separated string containing pages required to be selected at startup.")]
    public: __property Collection<ImGearSelectionPage*>* get_SelectedPages();
    [Category("ImGearThumbnailList Properties")]
    [Browsable(false)]
    [Description(" Gets or sets comma separated string containing pages required to be selected at startup.")]
    public:
    property Collection<ImGearSelectionPage^>^ SelectedPages {
       Collection<ImGearSelectionPage^>^ get();
    }

    Property Value

    A collection of ImGearSelectionPage objects.
    Remarks

    The default value is an empty collection of ImGearSelectionPage objects.

    This is a read only property. It can not be overwritten. It allows access to a ImGearSelectionPage element of a collection.

    Objects of ImGearSelectionPage can be created and added to this collection for selection of pages to be selected for the initial view in the control.

    See Also