HierarchyPriority Enum
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.
Specifies the priority for ordering items on a page.
public enum class HierarchyPriority
public enum HierarchyPriority
type HierarchyPriority =
Public Enum HierarchyPriority
- Inheritance
-
HierarchyPriority
Fields
Name | Value | Description |
---|---|---|
Lowest | 0 | The item will be placed after items with any other priority. |
Lower | 1 | The item will be placed after items with Normal priority and before those with Lowest priority. |
Normal | 2 | The item will be placed after items with Higher priority and before those with Lower priority. |
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. |
Examples
The following example implements the Priority property.
public override HierarchyPriority Priority
{
get
{
return HierarchyPriority.Lowest;
}
}