25 lines
754 B
C#
25 lines
754 B
C#
namespace CopaData.FileInspector.GUI.TilingPanels.Models;
|
|
|
|
/// <summary>
|
|
/// Used to declare where a new <see cref="TilingHost"/> shall be placed when tiling.
|
|
/// </summary>
|
|
public enum TilingDirection
|
|
{
|
|
None = 0,
|
|
/// <summary>
|
|
/// Left side of the target host, the new child becomes alpha and the target host moves to beta.
|
|
/// </summary>
|
|
Left = 1,
|
|
/// <summary>
|
|
/// The top of the target host, the new child becomes alpha and the target host moves to beta.
|
|
/// </summary>
|
|
Top = 2,
|
|
/// <summary>
|
|
/// Right side of the target host, the new child becomes beta.
|
|
/// </summary>
|
|
Right = 3,
|
|
/// <summary>
|
|
/// The bottom of the target host, the new child becomes beta.
|
|
/// </summary>
|
|
Bottom = 4
|
|
} |