IVsIntellisenseHost::HighlightMatchingBrace Method (UInt32, UInt32, array<TextSpan>^)

 

Highlights the matching brace.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
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::Int32

If 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);

Return to top
Show: