×

Sign up and get MultiCharts free

Use its powerful simulation mode with data included out of the box. Just fill out the form and start honing your trading skills with a few clicks.

Changes - MultiCharts
Open main menu

Changes

Arw SetTextAttribute

1,149 bytes added, 13:20, 17 January 2012
Created page with "Sets an attribute of the text in an arrow object with the specified ID number; returns a value of 0 if the attribute was successfully set, and a value of -2 if the specified o..."
Sets an attribute of the text in an arrow object with the specified ID number; returns a value of 0 if the attribute was successfully set, and a value of -2 if the specified object ID number is invalid.

The following text attributes can be set: border, bold, italic, strike-out, and underline.

==== Usage ====
<syntaxhighlight>Arw_SetTextAttribute(ObjectID,Attribute,LogicalExpression)</syntaxhighlight>

==== Parameters ====
<syntaxhighlight>ObjectID</syntaxhighlight> - a numerical expression specifying the object ID number

<syntaxhighlight>Attribute</syntaxhighlight> - a numerical expression specifying the attribute:

0 - border
1 - bold
2 - italic
3 - strike-out
4 - underline

<syntaxhighlight>LogicalExpression</syntaxhighlight> - a logical value; True = on and False = off

==== Notes ====
An object-specific ID number is returned by <syntaxhighlight>Arw_New</syntaxhighlight> when the arrow object is created.

==== Example ====
Set the attribute "bold" to on for the text in an arrow object with the ID number of 3:

<syntaxhighlight>Value1=Arw_SetTextAttribute(3,1,True);</syntaxhighlight>

[[Category:ArrowDrawing]]
Anonymous user