getStrokeWidth() public méthode

Get the stroke width
public getStrokeWidth ( ) : integer
Résultat integer
Exemple #1
0
 public function testSetStrokeWidth()
 {
     $g = new Graph($this->imageOptions);
     $g->setStrokeWidth(5);
     $this->assertEquals(5, $g->getStrokeWidth());
 }