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

ForEveryTile: {
    return true;   /* processsing complete for this tile */
}

Also see

ForEveryRow, ForEveryPixel, handlers

Comments

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