Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Highlights the matching brace in a language construct.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function HighlightMatchingBrace ( _
dwFlags As UInteger, _
cSpans As UInteger, _
rgBaseSpans As TextSpan() _
) As Integer
int HighlightMatchingBrace(
uint dwFlags,
uint cSpans,
TextSpan[] rgBaseSpans
)
int HighlightMatchingBrace(
[InAttribute] unsigned int dwFlags,
[InAttribute] unsigned int cSpans,
[InAttribute] array<TextSpan>^ rgBaseSpans
)
abstract HighlightMatchingBrace :
dwFlags:uint32 *
cSpans:uint32 *
rgBaseSpans:TextSpan[] -> int
function HighlightMatchingBrace(
dwFlags : uint,
cSpans : uint,
rgBaseSpans : TextSpan[]
) : int
Parameters
- dwFlags
Type: System.UInt32
[in] Parameter is not used.
- cSpans
Type: System.UInt32
[in] Number of matching pairs to highlight within the text span.
- rgBaseSpans
Type: array<Microsoft.VisualStudio.TextManager.Interop.TextSpan[]
[in, size_is(cSpans)] Span of text to highlight within.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextView::HighlightMatchingBrace(
[in] DWORD dwFlags,
[in] ULONG cSpans,
[in, size_is(cSpans)] TextSpan *rgBaseSpans
);
.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.