HierarchyPriority Enum

Definition

Specifies the priority for ordering items on a page.

public enum class HierarchyPriority
public enum HierarchyPriority
type HierarchyPriority = 
Public Enum HierarchyPriority
Inheritance
HierarchyPriority

Fields

Higher 3

The item will be placed after items with Highest priority and before those with Normal priority.

Highest 4

The item will be placed before items with any other priority.

Lower 1

The item will be placed after items with Normal priority and before those with Lowest priority.

Lowest 0

The item will be placed after items with any other priority.

Normal 2

The item will be placed after items with Higher priority and before those with Lower priority.

Examples

The following example implements the Priority property.

public override HierarchyPriority Priority
{
    get
    {
        return HierarchyPriority.Lowest;
    }
}

Applies to