
Hi,
Is there an event I can listen to when the intelliprompt is about to display that will let me remove items from the completion list? I would like hide some Properties/Methods from the C# window my users see.
thanks,
Jake
Hi,
Is there an event I can listen to when the intelliprompt is about to display that will let me remove items from the completion list? I would like hide some Properties/Methods from the C# window my users see.
thanks,
Jake
Thanks, that helped a lot. I would like to be able to filter based on the parent text. For example, I would show GetType() on the Foo type but not the Goo type. I think that information is in the Context property. It looks like the Context property's type has been obfuscated. Should I get information out of it via reflection is there an easier way?
The last post in that other thread talks about which interfaces we are using in each completion list item's Tag property. You should be able to get what you need there since we store all the reflection data for the related type/member being displayed in the item via those interfaces.
Please log in to a validated account to post comments.