OutliningRegionTag.IsImplementation Property
Determines whether a region is an implementation region.
Namespace: Microsoft.VisualStudio.Text.Tagging
Assembly: Microsoft.VisualStudio.Text.UI (in Microsoft.VisualStudio.Text.UI.dll)
Syntax
'Declaration
Public Property IsImplementation As Boolean
public bool IsImplementation { get; private set; }
public:
virtual property bool IsImplementation {
bool get () sealed;
private: void set (bool value) sealed;
}
abstract IsImplementation : bool with get, private set
override IsImplementation : bool with get, private set
final function get IsImplementation () : boolean
private final function set IsImplementation (value : boolean)
Property Value
Type: System.Boolean
true if a region is an implementation region, otherwise false.
Implements
IOutliningRegionTag.IsImplementation
Remarks
Implementation regions are the blocks of code following a method definition. They are used for commands such as the Visual Studio Collapse to Definition command, which hides the implementation region and leaves only the method definition exposed.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.