ComponentFactory.Krypton.Toolkit.ButtonSpecManagerLayout.DockerOrientation C# (CSharp) Method

DockerOrientation() protected method

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