Size of an arrow

 

Hi,


Is there any command or parameter to change the size of a symbol ?

I use:

SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,232);
To draw an arrow (code 232) in the buffer 2


Thanks

 
Variopinto:

Hi,


Is there any command or parameter to change the size of a symbol ?

I use:

SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,232);
To draw an arrow (code 232) in the buffer 2

Use ObjectSet() with OBJPROP_WIDTH
 
RaptorUK:
Use ObjectSet() with OBJPROP_WIDTH



Thanks,


But what I write in "name" in Object Set ?

bool ObjectSet( string name, int index, double value)

 
Variopinto:



Thanks,


But what I write in "name" in Object Set ?

bool ObjectSet( string name, int index, double value)

Sorry I mis read your original post. What I replied was wrong.
 
Try setting a width value in your SeIndexStyle() call
 
excelent !
Reason: