IVsIntellisenseHost::HighlightMatchingBrace Method (UInt32, UInt32, array<TextSpan>^)
Visual Studio 2015
Highlights the matching brace.
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
int HighlightMatchingBrace( unsigned int dwFlags, unsigned int cSpans, array<TextSpan>^ rgBaseSpans )
Parameters
- dwFlags
-
Type:
System::UInt32
[in] Parameter is not used.
- cSpans
-
Type:
System::UInt32
[in] Number of matching brace pairs to highlight within the text span.
- rgBaseSpans
-
Type:
array<Microsoft.VisualStudio.TextManager.Interop::TextSpan>^
[in, size_is(cSpans)] Span of text within which highlighting occurs.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
C++
From singlefileeditor.idl:
HRESULT IVsIntellisenseHost::HighlightMatchingBrace([in] DWORD dwFlags, [in] ULONG cSpans, [in, size_is(cSpans)] TextSpan *rgBaseSpans);
Show: