Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.14 KB

File metadata and controls

48 lines (34 loc) · 1.14 KB
title region, endregion
ms.date 10/18/2018
f1_keywords
vc-pragma.endregion
endregion_CPP
region_CPP
vc-pragma.region
helpviewer_keywords
pragmas, region
pragmas, endregion
endregion pragma
region pragma
ms.assetid c697f807-622f-4796-851b-68a42bbecd84

region, endregion

#pragma region lets you specify a block of code that you can expand or collapse when using the outlining feature of the Visual Studio Code Editor.

Syntax

#pragma region name
#pragma endregion comment

Parameters

comment
(Optional) A comment that will display in the code editor.

name
(Optional) The name of the region. This name will display in the code editor.

Remarks

#pragma endregion marks the end of a #pragma region block.

A #region block must be terminated with #pragma endregion.

Example

// pragma_directives_region.cpp
#pragma region Region_1
void Test() {}
void Test2() {}
void Test3() {}
#pragma endregion Region_1

int main() {}

See also

Pragma Directives and the __Pragma Keyword