Posted 15 years ago by Alex
Avatar
I want to show only MemberList and disable showing QuickInfo and ParameterInfo. How can I do it? I tried using

CSharpSyntaxLanguage cSharpLanguage = new CSharpSyntaxLanguage();
cSharpLanguage.IntelliPromptParameterInfoEnabled = false;
cSharpLanguage.IntelliPromptQuickInfoEnabled = false;
editor1.Document.Language = cSharpLanguage;
but it doesn't work.
Thanks,

Alex

Comments (4)

Posted 15 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Alex,

When I test and turn those options off I don't see quick info or parameter info, which is the expected result.

Perhaps you are setting a new language instance somewhere accidentally? If you can repro this in our sample project, please let us know how.


Actipro Software Support

Posted 15 years ago by Alex
Avatar
I wasn't clear enough. When I just scroll througth the IntelliPromptMember dropdown list, it always shows a tooltip for the selected item with ParameterInfo.
I would like to disable showing this tooltip.

Thanks
Alex
Posted 15 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
If you don't set a Description on your IntelliPromptMemberListItem's then it won't show up.

You also could handle the IntelliPromptMemberListItemDescriptionRequested event and clear such Description on the currently selected member list item. That event fires right before display.


Actipro Software Support

Posted 15 years ago by Alex
Avatar
Excellent, the handling of this event works.
Thanks again for the great architecture!
The latest build of this product (v24.1.0) was released 2 months ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.