
I've set up .NET intellisense with automatic member lists. Consider this code in the editor:
If at the end of MyMethod, I type "c." the intellisense member list will pop up. The item "Str" will have a Description showing among other text also the summary tag info ("This is..."). So apparently SyntaxEditor knows which Description to use for this item.
But in the prefilter event, I would like to reach this info also, for example to decide a suitable ImageIndex, or to set the Description manually. Suppose the IntellisenseMemberListItem.Tag is used for this. But in this case it will only contain a string like "[116-119] VariableDeclarator". How can I use this to get the info for Str?
Thanks for any help...
using System;
public class Another
{
/// <summary>
/// This is the string Str
/// </summary>
public string Str;
}
public class My
{
public MyMethod()
{
Another c = new Another();
}
}
But in the prefilter event, I would like to reach this info also, for example to decide a suitable ImageIndex, or to set the Description manually. Suppose the IntellisenseMemberListItem.Tag is used for this. But in this case it will only contain a string like "[116-119] VariableDeclarator". How can I use this to get the info for Str?
Thanks for any help...