namespace Netron.Diagramming.Core.Layout { public static class LayoutSettings { public static class TreeLayout { /// /// Gets or sets the TreeOrientation of the standard/classic tree layout /// public static TreeOrientation TreeOrientation { get { return StandardTreeLayout.Orientation; } set { StandardTreeLayout.Orientation = value; } } /// /// Gets or sets the spacing between siblings. /// public static float BreadthSpacing { get { return StandardTreeLayout.BreadthSpacing; } set { StandardTreeLayout.BreadthSpacing = value; } } /// /// Gets or sets the spacing between parent-child. /// public static float DepthSpacing { get { return StandardTreeLayout.DepthSpacing; } set { StandardTreeLayout.DepthSpacing = value; } } public static float SubTreeSpacing { get { return StandardTreeLayout.SubTreeSpacing; } set { StandardTreeLayout.SubTreeSpacing = value; } } } } }