Ejemplo n.º 1
0
 /// <summary>
 /// Scrolls this element into view.
 /// If the technology manager does not support scrolling multiple containers,
 /// then the outPointX and outPointY should be returned as -1, -1.
 /// </summary>
 /// <param name="pointX">The relative x coordinate of point to make visible.</param>
 /// <param name="pointY">The relative y coordinate of point to make visible.</param>
 /// <param name="outPointX">The relative x coordinate of the point with respect to top most container after scrolling.</param>
 /// <param name="outPointY">The relative y coordinate of the point with respect to top most container after scrolling.</param>
 /// <seealso cref="UITechnologyManagerProperty.ContainerScrollingSupported"/>
 public override void EnsureVisibleByScrolling(int pointX, int pointY, ref int outpointX, ref int outpointY)
 {
     InnerElement.EnsureVisibleByScrolling(pointX, pointY, ref outpointX, ref outpointY);
 }