ColorableItem::GetMergingPriority Method (Int32)

 

Returns the priority this colorable item has when compared to other colorable items of the same name.

Namespace:   Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)

public:
virtual int GetMergingPriority(
	[OutAttribute] int% priority
)

Parameters

priority
Type: System::Int32

[out] A priority value, the higher it is, the more preferred this colorable item.

Return Value

Type: System::Int32

If successful, returns S_OK; otherwise, returns an error code.

Microsoft products use a priority of 0x1000 or greater. If your package is the primary source for this colorable item, use a priority of 0x2000 or greater. If you do not care about priority, return a negative value.

This method is an implementation of the GetMergingPriority method in the IVsMergeableUIItem interface.

The base method returns a priority of -1 and a success code of E_NOTIMPL.

Return to top
Show: