Posted 16 years ago
by Alex
I want to show only MemberList and disable showing QuickInfo and ParameterInfo. How can I do it? I tried using
but it doesn't work.
Thanks,
Alex
CSharpSyntaxLanguage cSharpLanguage = new CSharpSyntaxLanguage();
cSharpLanguage.IntelliPromptParameterInfoEnabled = false;
cSharpLanguage.IntelliPromptQuickInfoEnabled = false;
editor1.Document.Language = cSharpLanguage;
Thanks,
Alex