Older Newer
Sat, 08 Dec 2007 11:58:14 . . . . afh [Remove colons at end of headers.]


Changes by last author:

Added:
= ForEveryTile =

== Syntax ==

:ForEveryTile: (<compound-statement>)?

== Return ==

:true if processing is complete for this tile, else false if the ForEveryRow handler should be called next for individual processing of each row in this tile.

== Description ==

:This handler is called for every tile in an image from left to right, then top to bottom.

== Default handler ==

:The default ForEveryTile handler simply returns false, passing control to the ForEveryRow handler for every row in this tile.

== Example ==

<code>

ForEveryTile: {

return true; /* processsing complete for this tile */

}

</code>

== Also see ==

:ForEveryRow, ForEveryPixel, handlers

== Comments ==

:Everyone can add his/her comments about this handler here. Tips for using it are welcome, too.