 | | Wide Studio Programmer's Guide
| |
How to draw the instances
You can use the following methods to draw the instances.
To control drawing | Descrition |
setAbsoluteDraw(Boolean) | Sets the flag of forced drawing. |
draw() | draws if needs. |
redraw() | clears and draws |
cdraw() | draws the instance and its children. |
clear() | clears the instance. |
update() | draws if needs. |
How to update the instance
Usually, it executes updating the instance
at the end of the event procedures.
If you want to update at once,
you can it with the method: update().
void event_procedure(WSCbase* object){
//change a property.
object->setProperty(WSNlabelString,"new text");
//updating.
object->update();
}
The method: update() updates the instance,
if it needs to refrect the change of the properties.
How to draw the instance
There are following cases to draw the instances.
Document Release 1.3 For Use with Wide Studio Release 1.3, Summer 2001 Wide Stuido Home | Up to Copyright(C) T. Hirabayashi, 2000-2001 | | Last modified: August 20, 2001 | |