getSymbolDescription() Utility Functions
Returns the symbol description.
Syntax
getSymbolDescription( [ Symbol ] )
Parameters
Parameter: | Description: | Default: |
Symbol | [Optional] A string identifying the symbol. | Base symbol |
Notes
Only available in versions 11.8 or later.
Code Examples
var bInit = false; var sSymDesp = null; function main(){ if (!bInit){ sSymDesp = getSymbolDescription(); drawTextPixel(10, 50, "Symbol Description - " + sSymDesp, Color.red); bInit = true; }; }
See Also