IVsTextLineMarker.GetPriorityIndex(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
Implements
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextLineMarker::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.