File: System\Windows\Controls\Primitives\RelativeHeaderPosition.cs
Web Access
Project: src\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
// 
// Description: Relative Header Position implementation
//
 
namespace System.Windows.Controls.Primitives
{
    /// <summary>
    /// RelativeHeaderPosition enum is used to indicate where the Header for a GroupItem or a TreeViewItem is positioned with respect to its items.
    /// </summary>
    internal enum RelativeHeaderPosition 
    {
        Top,
        Bottom,
        Left,
        Right
    }
}