This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Thursday, July 6, 2006 11:54:11 AM(UTC)
Groups: Registered
Posts: 3
We need to display representations of pages from multi-page tiffs as thumbnails and allow users to select and rearrange / reorder them. We have code to load the thumbnail browser from a RasterImageList. What is the best way to implement the rearrange / reorder functionality?
Thanks
#2
Posted
:
Monday, July 10, 2006 12:25:50 AM(UTC)
Groups: Guests
Posts: 3,022
Was thanked: 2 time(s) in 2 post(s)
You can try swapping the RasterImageList.Items.Item(i) properties among
each other. For example, to swap the first and second thumbnails
try something like this:
RasterImageListItem tempItem = ImageList.Items.Item(1);
ImageList.Items.Item(1) = ImageList.Items.Item(2);
ImageList.Items.Item(2) = tempItem;
#3
Posted
:
Tuesday, July 11, 2006 5:37:57 AM(UTC)
Groups: Registered
Posts: 3
Thanks, we'll give it a try.
Bob
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.