Signature color

Hello Guys,
I am trying to change the color of the signature at run time. I cant seem to access the ‘lineColor’ property. When I do Signature1.lineColor but it does not work. Is there a trick to get to that property?

You need to do this:

Signature1.getContext("2d").strokeStyle = "red"

Do this before the user starts drawing.

That did it.
THANKS!!!