A sketch depicting the outer edges of a person or object, without interior details or shading.
Questions tagged [outlining]
43 questions
114
votes
9 answers
How to permanently disable region-folding in Visual Studio 2008
Anyone know how to turn off code folding in visual studio 2008? Some of my colleagues love it, but I personally always want to see all the code, and never want code folded out of sight. I'd like a setting that means my copy of Visual Studio never…

Steve Cooper
- 20,542
- 15
- 71
- 88
31
votes
6 answers
Visual Studio : exclude outlining from undo/redo stack
There's something really annoying in Visual Studio : when I expand or collapse a method or code region, this action is pushed on the undo stack. So if I edit some code in a method, then collapse that method, and then want to undo my change, I have…

Thomas Levesque
- 286,951
- 70
- 623
- 758
22
votes
2 answers
Visual Studio 2013 C++ outlining / collapsing if/else/while code regions
Apparently in VS13 they removed the outlining section in Option -> Text Editor -> C++ -> Formatting.
Is there a way of collapsing if/while/etc statements in VS2013 C++? I know about the C# plugin and already got that, but I'm searching for a…

AndrewVS2013
- 658
- 1
- 6
- 14
14
votes
3 answers
OpenGL - object outline
I'm trying to implement a selection-outline feature. This is what I get up to now.
As you can see, the objects are selected correctly when the mouse hovers and a contour is drawn around the selected object.
What I would like to do now is to outline…

Arctic Pi
- 669
- 5
- 19
11
votes
1 answer
How to change the outlining hover color in VS 2010?
If i hover over the thin vertical bar on the left, it highlights the entire scope of the block that's to the right. When this scope is large, my entire screen flashes white (a consequence of my custom color scheme). Is there a way to change that…

RCIX
- 38,647
- 50
- 150
- 207
8
votes
1 answer
Auto collapse to definitions visual studio 2012
I have been looking high and low for a way to auto collapse to definitions in visual studio 2012 when you open a file.
I found a solution for VS2010 here Any way to auto collapse to definitions whenever you close a document? but that requires a…

Austin
- 197
- 1
- 1
- 4
7
votes
1 answer
openGL sphere that is both wireframe and solid
I manually drew a sphere, at last :) I want my sphere to be red, but the outlines to be green:
In order to achieve this I did the following. I drew a solid sphere in red, and then I drew the same sphere, but wireframe and green. When I turned…

Armen Tsirunyan
- 130,161
- 59
- 324
- 434
7
votes
4 answers
Is there a way to specify outlining defaults in Visual Studio 2008 so that a file opens up with members collapsed by default?
What I would like to do is have VS2008, when I open a code file, collapse all members of the classes/interfaces in the file by default (including, crucially, any XML documentation and comments).
I do not want to use regions, at all.
I would also…

Peter Mounce
- 4,105
- 3
- 34
- 65
5
votes
1 answer
Visual Studio 2015 Javascript Outlining way too much
Visual Studio 2015 seams to outline all the multiline javascript code. I have a simple code like this:
$(document).ready(function ()
{
var x = {
test1: 1,
test2: 2
};
if (1 == 1)
{
…

Kathy Judd
- 715
- 3
- 9
- 21
4
votes
2 answers
Visual Studio 2010 C# Outlining works improperly
So, code blocks (which can be collapsed like #region blocks) have corresponding markers (+ symbols) to the left of the text editor. These markers should be placed right where the code block starts. My problem is that they are shifted upwards a…

Pavel
- 41
- 3
4
votes
3 answers
Remove blue outlining of buttons
Possible Duplicate:
How to set/change/remove focus style on a Button in C#?
Is there a way to remove the blue outlining when a button is pressed/was pressed/is active?
Here is a screenshot:
Is there any way to hide it? I am using C# and…

Tim Kathete Stadler
- 1,067
- 4
- 26
- 52
4
votes
2 answers
Recursively expand collapsed regions in Visual Studio? (outlining)
I'm using Visual Studio 2008, and it doesn't seem like once I have collapsed all the regions, I can expand ALL levels of a certain region with one click/command. Notepad++ has this functionality when you ctrl + click on a collapsed region, it…

Kurt Margenau
- 51
- 3
3
votes
1 answer
How to convert from VimOutliner to Markdown?
How could I convert a VimOutliner file to Markdown?
In other words, I how to turn tab-indeted outlines like this...
Heading 1
Heading 2
Heading 3
: Body text is separated by colons.
: Another line of body…

martz
- 839
- 6
- 21
3
votes
3 answers
is rendering only one of its element in Outlining algorithm(HTML5)
I'm new to HTML5 and I read the outlining concept and I understood. I tried part of code in
this site(to outline my code) :
But the result I…

Ant's
- 13,545
- 27
- 98
- 148
3
votes
1 answer
Outlining in VS2008, C++, not working
I'm using VS2008 (version 9.0.30729.1 SP) and have found that outlining regularly stops working. I get outlining options for the start and end of functions, and for comment blocks, but not for other code blocks, such as ifs, while loops, for loops,…

SmacL
- 22,555
- 12
- 95
- 149