RedrawAll

Typestatement
DictionaryLCB
LibraryLiveCode Builder
Syntax
redraw all
Associationscom.livecode.widget
Summary

Redraws the widget.

Example
private variable mColor as Color

public handler OnClick()
	put color [ any number, any number, any number ] into mColor
	redraw all
end handler

public handler OnPaint()
	...
	set the paint of this canvas to solid paint with color mColor
	...
end handler
RelatedMessage: OnPaint
Description

Use redraw all to redraw the widget, for example after setting a property which should trigger a change in appearance.

Tagswidget