IVsPackageDefinedTextMarkerType.GetPriorityIndex Method

Returns the priority index for the custom marker type, with the highest priority value receiving the topmost placement.

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

Syntax

'宣言
Function GetPriorityIndex ( _
    <OutAttribute> ByRef piPriorityIndex As Integer _
) As Integer
'使用
Dim instance As IVsPackageDefinedTextMarkerType
Dim piPriorityIndex As Integer
Dim returnValue As Integer

returnValue = instance.GetPriorityIndex(piPriorityIndex)
int GetPriorityIndex(
    out int piPriorityIndex
)
int GetPriorityIndex(
    [OutAttribute] int% piPriorityIndex
)
function GetPriorityIndex(
    piPriorityIndex : int
) : int

Parameters

  • piPriorityIndex
    Type: System.Int32%

    [out] Pointer to the priority index for the type of text marker. For a list of piPriorityIndex values, see MARKERTYPE.

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 IVsPackageDefinedTextMarkerType::GetPriorityIndex(
   [out] long *piPriorityIndex
);

The marker with the highest priority value receives topmost placement during command handling, and each subsequent marker is placed in descending order according to its priority value. Use priority values of 10,000 and higher if your marker should override built-in items like bookmarks and shortcut markers. Use values of 90 to 100 if your marker should not override other markers.

注意

If priority conflicts arise, the environment might assign external markers a uniform, low priority.

Permissions

See Also

Reference

IVsPackageDefinedTextMarkerType Interface

IVsPackageDefinedTextMarkerType Members

Microsoft.VisualStudio.TextManager.Interop Namespace