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;
        }