TOC PREV NEXT INDEX

domref



window.onpaint


An event handler for the paint event on the window.

Syntax

window.onpaint = funcRef
 

Parameters

funcRef is a reference to a function.

Example

window.onpaint = doFunc;
 

Notes

The paint event is raised when the window is rendered. This event occurs after the load event for a window, and reoccurs each time the window needs to be rerendered, as when another window obscures it and is then cleared away.

Specification

DOM Level 0. Not part of specification.
 


Netscape Communications
http://developer.netscape.com
TOC PREV NEXT INDEX