namespace Artemis.Core;
///
/// Represents the position of a node's custom view model.
///
public enum CustomNodeViewModelPosition
{
///
/// Puts the view model above the pins.
///
AbovePins,
///
/// Puts the view model between the pins, vertically aligned to the top.
///
BetweenPinsTop,
///
/// Puts the view model between the pins, vertically aligned to the center.
///
BetweenPinsCenter,
///
/// Puts the view model between the pins, vertically aligned to the bottom.
///
BetweenPinsBottom,
///
/// Puts the view model below the pins.
///
BelowPins
}