VitNX_ScrollBar.ScrollToPhysical Method
public void ScrollToPhysical(
int positionInPixels
)
This language is not supported or no code example is available.
Parameters
-
positionInPixels
-
int
public void ScrollToPhysical(int positionInPixels)
{
var isVert = _scrollOrientation == VitNX_ScrollOrientation.Vertical;
var trackAreaSize = isVert ? _trackArea.Height - _thumbArea.Height : _trackArea.Width - _thumbArea.Width;
var positionRatio = (float)positionInPixels / (float)trackAreaSize;
var viewScrollSize = (Maximum - ViewSize);
var newValue = (int)(positionRatio * viewScrollSize);
Value = newValue;
}
This language is not supported or no code example is available.
.NET Framework
Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
.NET Core
Supported in: 5.0+, 6.0+