qamp/Qrakhen.TilingFrames/Models/TilingMethod.cs

17 lines
440 B
C#

namespace CopaData.FileInspector.GUI.TilingPanels.Models;
/// <summary>
/// Declares the intent of dropping a host into another.
/// </summary>
public enum TilingMethod
{
/// <summary>
/// In the case of the host being placed as a split next to the target host.
/// </summary>
Split = 0,
/// <summary>
/// In case of the new host becoming a tab of the target host, rather than splitting.
/// </summary>
Drop = 1
}