Formating text of a comment

 
I would like to change the size, fonts, color of a comment, is it possible? Please show me how.
 

I'm not aware of a way to do what you describe.


You can use a "Text Label" object if you want to set font parameters.


https://docs.mql4.com/objects/ObjectCreate

 
Raider:

I'm not aware of a way to do what you describe.


You can use a "Text Label" object if you want to set font parameters.


https://docs.mql4.com/objects/ObjectCreate


What Raider says here is that altering properties is possible for objects.

After you make the object with ObjectCreate, you modify font, size, or color, with ObjectSet.

Example:  ObjectSet("MyLine",OBJPROP_COLOR,Red);

However, for comments, it's not possible.

Reason: