Hello would like to know if it is possible to Fill the entire space of the Thumbnail of the image Loaded as always is a margin I'd like the loaded image takes up all the space of the Thumbnail Thanks for reading and responding.
Set the ImageEnMView1.Style to iemsFlat and align ImageEnMView = alLeft; Then add a TSplitter on the right side of the ImageEnMview.
Then write:
procedure TForm1.Splitter1Moved(Sender: TObject);
begin
// resize the thumbnails and allow room for selection to be fully visible
ImageEnMView1.ThumbWidth := ImageEnMView1.ClientWidth - (ImageEnMView1.HorizBorder * 2);
ImageEnMView1.ThumbHeight := ImageEnMView1.ClientWidth - (ImageEnMView1.HorizBorder * 2);
ImageEnMView1.Update;
if ImageEnMView1.SelectedImage <> -1 then
// Keep selected image visible
ImageEnMView1.DisplayImageAt(ImageEnMView1.SelectedImage, 0, ImageEnMView1.SelectedImage);
end;
The thumbnail will fill the entire ImageEnMView client area minus an adjustment for the HorizBorder. When you move the splitter then ImageEnMView resizes itself so you can adjust the width of the thumbnails baised on the on the ImageEnMView clientwidth.
Thank you very much for your help. I put a sample image with the Thumbnail of Google Picasa Realizes that it fills the entire space of the Thumbnail does not Get equal Edge the TImageEnMView is possible I make the Thumbnail not deiche border space and be equal the thumbnail google picasa. Thanks for reading and Responding.
I found an example in the Page Below. http://www.imageen.com/info/index.html It is possible you send us this example to study. Because the Thumbnail this equal google picasa oculpando the whole space. Thanks for reading and Responding.
Hello Bill is Possible you help me again. I would like to Deichar TImageEnMView and TSplitter Aligned to Top TImageENView and aligned to the client would like the code to Work Properly since I'm not getting.