C1.C1Pdf Namespace / C1PdfDocument Class / Write Method
Format string, as in System.String.Format(System.String,System.Object).
Array of objects to write using format.

In This Topic
Write Method (C1PdfDocument)
In This Topic
Writes raw content into the Pdf stream for the current page.
Syntax
'Declaration
 
Public Sub Write( _
   ByVal format As String, _
   ByVal ParamArray args() As Object _
) 
 

Parameters

format
Format string, as in System.String.Format(System.String,System.Object).
args
Array of objects to write using format.
Remarks
This is a low-level method that allows you to insert Pdf commands directly into the page stream. It is intended for use by derived classes and requires knowledge of the Pdf document structure and syntax.
See Also