Returns the canvas that drawing commands are currently applied to
1 = OpenCanvas(640, 480, 0, 0, 640, 480, 0)
2 = OpenCanvas(640, 480, 0, 0, 640, 480, 0)
Canvas(1)
If ActiveCanvas() = 1 Then
Print "Active canvas is c1"
End If
Canvas(2)
If ActiveCanvas() = 2 Then
Print "Active canvas is now c2"
End If