BrightIdeasSoftware.ObjectListView.LowLevelScroll C# (CSharp) Method

LowLevelScroll() private method

Scroll the ListView by the given deltas.
private LowLevelScroll ( int dx, int dy ) : void
dx int Horizontal delta
dy int Vertical delta
return void
        internal void LowLevelScroll(int dx, int dy)
        {
            NativeMethods.Scroll(this, dx, dy);
        }
ObjectListView