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