PHP Classes

Change Font Color

Recommend this page to a friend!

      VS PHP Word HTML  >  All threads  >  Change Font Color  >  (Un) Subscribe thread alerts  
Subject:Change Font Color
Summary:Change Font Color
Messages:1
Author:Moisés Artacho
Date:2017-02-28 11:23:44
 

  1. Change Font Color   Reply   Report abuse  
Picture of Moisés Artacho Moisés Artacho - 2017-02-28 11:23:44
One question, how can I change the font color of one class?

I have the following:

$p = new PCompositeNode();
$r = new RCompositeNode();
$p->addNode($r);
$r->addTextStyle(new BoldStyleNode());
$r->addTextStyle(new FontSizeStyleNode(10));

It's bold and size 10, but i want to be some color (example, red)

Thanks,