removeImage() |
Top Previous Next |
removeImage( tagID )
Remove a specific image object originally drawn by drawImageRelative() or drawImageAbsolute(). The object is identified by its tagID.
Parameters
Usage
function main() {
... ...
if ( getBarState() == BARSTATE_NEWBAR ) {
//remove a specific image object from the chart. We we originally //drew this image object, we gave it a tagID of 201 so that we //could identify it later. removeImage( 201 );
}
}
|