using Pilz.Features;
namespace Pilz.UI.WinForms.Features;
[Flags]
public enum FeatureInsertMode
{
///
/// Features will be inserted at the end of the collection.
///
Default = 0,
///
/// Features will be inserted at the end of the collection.
/// This is the default behavior and equals . Will only be used if not set .
///
DefaultEnd = Default,
///
/// Features will be inserted at the start of the collection.
/// Will only be used if not set .
///
DefaultStart = 1,
///
/// Features with prioritization will be inserted at the top (or left).
///
InsertTop = 1 << 2,
///
/// Features with prioritization will be inserted at the bottom (or right).
///
InsertBottom = 1 << 3,
///
/// Features with prioritization other then will be inserted at the top or bottom.
///
InsertTopAndBottom = InsertTop | InsertBottom,
}