Writes raw content into the Pdf stream for the current page.

Namespace:  C1.Silverlight.Pdf
Assembly:  C1.Silverlight.Pdf (in C1.Silverlight.Pdf.dll)

Syntax

C#
public void Write(
	string format,
	params Object[] args
)
Visual Basic
Public Sub Write ( _
	format As String, _
	ParamArray args As Object() _
)

Parameters

format
Type: System..::..String
Format string, as in Format(String, Object).
args
Type: array<System..::..Object>[]()[][]
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