Accessing Class properties from outside

I have C# script attached to the game object. I also have TrailRenderer attached to that game object.
How can i access TrailRenderer properties (or any other property) from other script when Script1 s = new Scrip1(); does not work?

Use GetComponent.

–Eric