C# Scroll Bar Visibility

using System.Windows.Forms; protected static ScrollBars GetVisibleScrollbars(ScrollableControl ctl) { if (ctl.HorizontalScroll.Visible) return ctl.VerticalScroll.Visible ? ScrollBars.Both : ScrollBars.Horizontal; else return ctl.VerticalScroll.Visible ? ScrollBars.Vertical : ScrollBars.None; }
using System.Windows.Forms;

protected static ScrollBars GetVisibleScrollbars(ScrollableControl ctl)
{
if (ctl.HorizontalScroll.Visible)
return ctl.VerticalScroll.Visible ? ScrollBars.Both : ScrollBars.Horizontal;
else
return ctl.VerticalScroll.Visible ? ScrollBars.Vertical : ScrollBars.None;
}

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.