ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 [IEvolution] Thumbnails text

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
newinf Posted - Jul 07 2011 : 08:29:13
Hi,

I am using a IEMulti viewer and when i load images from some Tiff's (with FillFromDirectory method) i can see at the bottom of each thumbnail image the file name. This is OK but... How can i disable it or how can i setup the caption text, for example, i would like set the page numbers (pag. 1, pag 2, ...)

Thanks in advance.
3   L A T E S T    R E P L I E S    (Newest First)
fab Posted - Jul 08 2011 : 01:01:39
I wrote...

"You can disable all texts writing:"

...I actually meant...

"You can set thumbnails text writing:"
newinf Posted - Jul 08 2011 : 00:37:21
Thanks Fabrizio, that is what i needed. It works.
fab Posted - Jul 07 2011 : 10:09:03
You can disable all texts writing:

ieMulti1.ImageList.GetImageInfo( idx ).GetBottomText().Caption = "xxxxx";

There are three text areas (info, top and bottom), so you can also write:

ieMulti1.ImageList.GetImageInfo( idx ).GetInfoText().Caption = "xxxxx";
ieMulti1.ImageList.GetImageInfo( idx ).GetTopText().Caption = "xxxxx";

"idx" is the image index, so to set all texts you have to loop for each image.