Mono.UIAutomation.Winforms.ListBoxProvider.GetInternalScrollBar C# (CSharp) 메소드

GetInternalScrollBar() 공개 메소드

public GetInternalScrollBar ( Orientation orientation ) : ScrollBar
orientation Orientation
리턴 System.Windows.Forms.ScrollBar
		public ScrollBar GetInternalScrollBar (Orientation orientation)
		{
			if (orientation == Orientation.Horizontal)
				return HorizontalScrollBar;
			else
				return VerticalScrollBar;
		}