Livecode Wiki
Advertisement

Cancels the current print job.

Built-in Message handler[]

Syntax:

cancel printing

Examples:

cancel printing
on mouseUp
   if the short name of me is "Cancel" then
      cancel printing
  end if
end mouseUp

Use the cancel printing command during a printing loop to cancel the current print job. After using this command, no print commands will have any effect until the current loop has been closed (by using close printing).

See Also: close printing Command, open printing Command, print Command, print anchor Command, print link Command, print bookmark Command

Advertisement