When I select an area of text in Visual Basic Express 2010 and then go click Edit/Outlining/Hide Selection; the area collapses and is represented by three dots like "...". Is there a way to put my own title, description or label on it for better meaning and communication?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Have you tried using the Region tag?

Public Class SomeClass
+   #Region "my special description for Foo"

        Public Sub Foo
            ''# process crap here
        End Sub
    #End Region

+   #Region "a different description for Bar"

        Public Sub Bar
            ''# process crap here
        End Sub
    #End Region
End Class

Once you add a "Region" to your code, you can then collapse it and the description stays visible.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.