[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.Writer.PdfStreamWriterBase.Write

Write Method

Write(Stream)

Writes content of specified stream.

Declaration
public void Write(Stream stream)
Parameters
Type Name Description
Stream stream

Write(string)

Writes a string using ASCII encoding, each char converted to byte as (byte)s[i].

Declaration
public void Write(string value)
Parameters
Type Name Description
string value

Write(string, int)

Writes a string using ASCII encoding, each char converted to byte as (byte)s[i]. If string length is less than length the spaces will be added at right, if string length is greater than length the string will be truncated.

Declaration
public void Write(string value, int length)
Parameters
Type Name Description
string value
int length

Write(byte[])

Writes a byte array.

Declaration
public void Write(byte[] value)
Parameters
Type Name Description
byte[] value

Write(Matrix3x2)

Writes a Matrix3x2 structure.

Declaration
public void Write(Matrix3x2 value)
Parameters
Type Name Description
Matrix3x2 value

Write(PointF)

Writes a PointF structure as 2 float values.

Declaration
public void Write(PointF p)
Parameters
Type Name Description
PointF p

Write(IPdfObject)

Writes the GrapeCity.Documents.Pdf.Spec.IPdfObject object if value is indirect object then reference to this object will be written otherwise Write(PdfStreamWriterBase) will be called to write value representing an object. If value is null or GrapeCity.Documents.Pdf.Spec.IPdfObject.Empty is true then PDF NULL value will be written.

Declaration
public abstract void Write(IPdfObject value)
Parameters
Type Name Description
IPdfObject value