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
 PdfViewer.ShowAllPages:=True; and using MouseInteractGeneral:=[miPdfSelectText,

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
Ralf Posted - Jul 25 2024 : 08:39:27
Hello Nigel,

we use PDFIum and we let show AllPages. When we do that then MousinteractGeneral is not used. Is it possible that we can use that feature when we unse ShowAllpages? That would be really nice and our customer ask for that.

Thanks
Ralf
2   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Jul 26 2024 : 20:42:51
Hi

As per the documentation, those interactions are not supported at this time:

http://www.imageen.com/help/TIEPdfViewer.ShowAllPages.html

It's on the to-do list for a future version.

Nigel
Xequte Software
www.imageen.com
Ralf Posted - Jul 25 2024 : 08:58:27
function TIEPdfViewer.IsTextSelectionEnabled(): Boolean;
begin
  Result := False;
  if assigned( fParent ) then
    Result := miPdfSelectText in TImageEnView( fParent ).MouseInteractGeneral;
end;


function TIEPdfViewer.IsImageSelectionEnabled(): Boolean;
begin
  Result := False;
  if assigned( fParent ) and not fShowAllPages then
    Result := miPdfSelectRgn in TImageEnView( fParent ).MouseInteractGeneral;
end;


Whats the Reason that you have in IsImageSelectionEnabled and not fShowAllPages? If i remove ths is that a problem?