ComponentFactory.Krypton.Toolkit.ButtonSpecManagerLayout.DockerOrientation C# (CSharp) Метод

DockerOrientation() защищенный Метод

Gets the orientation of the docker at the specified index.
protected DockerOrientation ( int i ) : VisualOrientation
i int Index.
Результат VisualOrientation
        protected override VisualOrientation DockerOrientation(int i)
        {
            if (_viewDockers.Length > i)
                return _viewDockers[i].Orientation;
            else
                return VisualOrientation.Top;
        }