ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms.Thumbnails Namespace / ImGearThumbnailCtl Class / MultiSelect Property




In This Topic
    MultiSelect Property (ImGearThumbnailCtl)
    In This Topic
    Gets or sets a value indicating whether multiple selection is allowed.
    Syntax
    'Declaration
     
    <CategoryAttribute("Behavior")>
    <DescriptionAttribute("Determines whether the user can select multiple Thumbnail items at the same time.")>
    Public Property MultiSelect As Boolean
    'Usage
     
    Dim instance As ImGearThumbnailCtl
    Dim value As Boolean
     
    instance.MultiSelect = value
     
    value = instance.MultiSelect
    [Category("Behavior")]
    [Description("Determines whether the user can select multiple Thumbnail items at the same time.")]
    public bool MultiSelect {get; set;}
    [Category("Behavior")]
    [Description("Determines whether the user can select multiple Thumbnail items at the same time.")]
    public: __property bool get_MultiSelect();
    public: __property void set_MultiSelect( 
       bool value
    );
    [Category("Behavior")]
    [Description("Determines whether the user can select multiple Thumbnail items at the same time.")]
    public:
    property bool MultiSelect {
       bool get();
       void set (    bool value);
    }

    Property Value

    Boolean value.
    Remarks
    If this property is true that means that the user can select multiple thumbnail items at the same time (shift-left-click to select a range of items, ctrl-left-click to select multiple individual items). If it is false, only one item can be selected - selecting one will automatically de-select any other that is selected.
    See Also