Why the region name not printing in Visual Studio 2010 when "hide collapsed region" is selected? -


in visual studio 2008, when print code "hide collapsed region", print result include region header name.

for example, if code looks this:

using ... namespace foo {    #region myregion1...     #region myregion2...     public void someaction{}  } 

in visual studio 2008 print, looks like:

using ... namespace foo {     myregion1      myregion2      public void someaction() } 

however, in visual studio 2010, looks like:

using ... namespace foo {         public void someaction() } 

notice region name not printing, leaves empty space. bug in vs 2010, or redesigned hide entire region blank space. can't find option change behavior.

what describe happens vs 2010 installation. assume design (or perhaps thoughtlessness, although seems hardly believable, since included feature through explicit checkbox option).

fyi, tried changing behavior through modifying printer syntax highlighting settings, no avail.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -