Type: ISym3Tools
Summary:
Remarks:
GetColorAt(System.Int32,System.Int32)
Summary:
Parameters:
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);
Mouse