MultiSelect thumbs

Questions, comments and suggestions concerning VintaSoft Imaging .NET SDK.

Moderator: Alex

Post Reply
brunopacola
Posts: 3
Joined: Tue Apr 07, 2009 4:07 pm

MultiSelect thumbs

Post by brunopacola »

HI!

I would like select images but i don't know method...

I tried:

Code: Select all

            IndicesCollection myIndicesCollection = new IndicesCollection();
            ...
            thumbnailViewer.SelectedIndices = myIndicesCollection;
But propertie is read-only....How I select images? Thanks!
Alex
Site Admin
Posts: 2304
Joined: Thu Jul 10, 2008 2:21 pm

Re: MultiSelect thumbs

Post by Alex »

Hello,

You can use this code to select the second image in the viewer:

Code: Select all

thumbnailViewer.SelectedIndices.Add(1)
thumbnailViewer.Invalidate()
Best regards, Alexander
Post Reply