Type: BCS.Sym3.ISym3Tools
Sym3 Tools. How to use (example): Tools.Mouse.SetCursorPosition(10, 10);
Properties
Mouse
- Description: Gets access to mouse operations
- Type: IMouseOperations
- Access: Read
Methods
GetColorAt(System.Int32,System.Int32)
Get color at pixel
- Parameters:
- x: x value in screen coordinates
- y: y value in screen coordinates
- Returns:
- color at x,y
- Example:
This example shows you how to get color at x,y position
var c = Tools.GetColorAt(100, 200);
print("Alpha = " + c.A);
print("Red = " + c.R);
print("Green = " + c.G);
print("Blue = " + c.B);