Quick Question about Tooltip!!

PDF-XChange Viewer SDK for Developer's
(ActiveX and Simple DLL Versions)

Moderators: PDF-XChange Support, Daniel - PDF-XChange, Chris - PDF-XChange, Sean - PDF-XChange, Vasyl - PDF-XChange, Ivan - Tracker Software, Stefan - PDF-XChange

adntES
User
Posts: 71
Joined: Fri Mar 25, 2011 5:43 pm

Quick Question about Tooltip!!

Post by adntES »

I try to disable the tooltip info.

SetAxProperty("ShowTooltips",0) or
SetAxDocProperty(ActiveDocId, "ShowTooltips", "0")

It doesn't work ^^ can you please provide me the correct command ??

thx alot!
User avatar
Stefan - PDF-XChange
Site Admin
Posts: 19885
Joined: Mon Jan 12, 2009 8:07 am

Re: Quick Question about Tooltip!!

Post by Stefan - PDF-XChange »

Hello adntES,

The ShowTooltips command is only related to comments, so if you want to disable e.g. toolbar button tooltips - I am not sure how this can be done and have asked the guys in the dev team for help.

Best,
Stefan
User avatar
Vasyl - PDF-XChange
Site Admin
Posts: 2445
Joined: Thu Jun 30, 2005 4:11 pm

Re: Quick Question about Tooltip!!

Post by Vasyl - PDF-XChange »

Hi, adntES.

Code: Select all

// to disable tooltips for toobar/menu items:
ctrl.SetProperty("View.ShowTooltipsOnToolbars", 0);
// to disable tooltips for comments on the pages:
ctrl.SetProperty("Commenting.ShowTooltips", 0);
// and optionally - to disable special indicators (small yellow icon) for comments with non-empty pop-ups:
ctrl.SetProperty("Commenting.ShowTextIndicators", 0);
Best
regards.
PDF-XChange Co. LTD (Project Developer)

Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.
adntES
User
Posts: 71
Joined: Fri Mar 25, 2011 5:43 pm

Re: Quick Question about Tooltip!!

Post by adntES »

thx works like a charm!!
User avatar
Stefan - PDF-XChange
Site Admin
Posts: 19885
Joined: Mon Jan 12, 2009 8:07 am

Re: Quick Question about Tooltip!!

Post by Stefan - PDF-XChange »

You are welcome adntES,

And I have made a note to the guys responsible for the manual to include the View.ShowTooltipsOnToolbars option in there, as it's currently not mentioned - the other two are correctly documented.

Best,
Stefan