0 out of 1 rated this helpful - Rate this topic

#Region Directive

Collapses and hides sections of code in Visual Basic files.

#Region "identifier_string" 
#End Region

Term

Definition

identifier_string

Required. String that acts as the title of a region when it is collapsed. Regions are collapsed by default.

#End Region

Terminates the #Region block.

Use the #Region directive to specify a block of code to expand or collapse when using the outlining feature of the Visual Studio Code Editor. #Region statements support block semantics (such as #If...#End If), meaning that the start and end must be in the same code block. You can place, or nest, regions within other regions to group similar regions together.

This example uses the #Region directive.

#Region "MathFunctions" 
    ' Insert code for the Math functions here.
#End Region
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.