I am able to use Intelliprompt as expected, how ever when I specified the XML comment specification for a VB Method the window thats pops up ( tool tip) does not show all the parameters, it gets chopped off at some size. In this case I am able to see Summary and parameter definition for a1. How do I control the size of that tool tip/QuickInfo window or turn on some auto size option. I tried all of these
syntaxEditor.IntelliPrompt.QuickInfo.MaximumWidth = 1000; syntaxEditor.IntelliPrompt.QuickInfo.CollapsedOutliningNodeMaximumCharacterCount = 1000;
syntaxEditor.IntelliPrompt.QuickInfo.Bounds.Inflate(500,500);
The specification is as follows
''' <summary>
''' This method does something really neat
''' </summary>
''' <param name="a1">this is a date 1</param>
''' <param name="b2">this is a date 2</param>
''' <param name="c3">this is a date 3</param>
''' <code tag>
''' Dim a1 As DateTime = YYYYMMDD("1/2/2008")
''' Dim b2 As DateTime = YYYYMMDD("1/2/2008")
''' Dim c3 As DateTime = YYYYMMDD("1/2/2008")
''' </code tag>
please advice. thank you.
Also we currently have a very restrictive control and want to show only few methods and even when I do not add any system references I see some Vb specific key words like "If" "while" "AddHandler" etc. We do not want to show them. How can I get rid of those?
syntaxEditor.IntelliPrompt.QuickInfo.MaximumWidth = 1000; syntaxEditor.IntelliPrompt.QuickInfo.CollapsedOutliningNodeMaximumCharacterCount = 1000;
syntaxEditor.IntelliPrompt.QuickInfo.Bounds.Inflate(500,500);
The specification is as follows
''' <summary>
''' This method does something really neat
''' </summary>
''' <param name="a1">this is a date 1</param>
''' <param name="b2">this is a date 2</param>
''' <param name="c3">this is a date 3</param>
''' <code tag>
''' Dim a1 As DateTime = YYYYMMDD("1/2/2008")
''' Dim b2 As DateTime = YYYYMMDD("1/2/2008")
''' Dim c3 As DateTime = YYYYMMDD("1/2/2008")
''' </code tag>
please advice. thank you.
Also we currently have a very restrictive control and want to show only few methods and even when I do not add any system references I see some Vb specific key words like "If" "while" "AddHandler" etc. We do not want to show them. How can I get rid of those?