String into a PDF?

Is there a way to get a string into the print function of the PDF Creator. I only see it printing via a file (cPrintFile)

For instance below is the stringbuilder code. I need to do the same thing to make a PDF.

 ' sw = New StreamWriter(sFileName)

 ' For Each c As Char In sb.ToString

 ' sw.Write(c)

 ' Next

 

 

 

 

 

 'Dim sw As StreamWriter = Nothing