Microsoft.VisualStudio.R.Package.DataInspect.HeaderTextVisual.SetArrowDisplay C# (CSharp) 메소드

SetArrowDisplay() 개인적인 메소드

private SetArrowDisplay ( ) : void
리턴 void
        private void SetArrowDisplay() {
            switch (SortOrder) {
                case SortOrderType.None:
                    _arrowChar = Nbsp;
                    break;

                case SortOrderType.Ascending:
                    _arrowChar = ArrowDown;
                    break;

                case SortOrderType.Descending:
                    _arrowChar = ArrowUp;
                    break;
            }
            Invalidate();
        }