예제 #1
0
 /// <summary>
 /// Gets a clickable point for this element.  The framework will use
 /// this to get clickable point if UITechnologyElement.GetOption(UITechnologyElementOption.GetClickablePointFrom)
 /// returns GetClickablePointFromTechnologyManager. To use the default algorithm
 /// provided by the framework, throw NotSupportedException.
 /// </summary>
 /// <param name="pointX">The x-coordinate of clickable point.</param>
 /// <param name="pointY">The y-coordinate of clickable point.</param>
 /// <exception cref="System.NotSupportedException">Throws System.NotSupportedException
 /// if this operation is not supported.</exception>
 /// <seealso cref="UITechnologyElementOption.GetClickablePointFrom"/>
 public override void GetClickablePoint(out int pointX, out int pointY)
 {
     InnerElement.GetClickablePoint(out pointX, out pointY);
 }