NXC  Version 1.2.1 r5
 All Data Structures Files Functions Variables Groups Pages
ex_sysdrawpoint.nxc

This is an example of how to use the SysDrawPoint function along with the DrawPointType structure.

task main()
{
DrawPointType dpArgs;
dpArgs.Location.X = 20;
dpArgs.Location.Y = 20;
dpArgs.Options = 0x04; // clear this pixel
SysDrawPoint(dpArgs);
}