This topic has not yet been rated - Rate this topic

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)
int GetPriorityIndex(
	out int piPriorityIndex
)

Parameters

piPriorityIndex
Type: Int32

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

Return Value

Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

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.

NoteNote

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

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.