IVsTextMarker.GetPriorityIndex(Int32) Method

Definition

Returns the text marker priority index, with the highest value getting the topmost placement.

public:
 int GetPriorityIndex([Runtime::InteropServices::Out] int % piPriorityIndex);
int GetPriorityIndex([Runtime::InteropServices::Out] int & piPriorityIndex);
public int GetPriorityIndex (out int piPriorityIndex);
abstract member GetPriorityIndex : int -> int
Public Function GetPriorityIndex (ByRef piPriorityIndex As Integer) As Integer

Parameters

piPriorityIndex
Int32

[out] Pointer to an integer containing the priority index. For a list of piPriorityIndex values, see MARKERTYPE.

Returns

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

Remarks

COM Signature

From textmgr.idl:

HRESULT IVsTextMarker::GetPriorityIndex(  
   [out] long *piPriorityIndex  
);  

Use this method to determine the priority level associated with a marker type. All of the marker types provided with the core text editor have default priorities associated with them. A marker type's priority is used to determine how the marker type is handled for commands and so on.

Applies to