[]
Writes content of specified stream.
public void Write(Stream stream)
| Type | Name | Description |
|---|---|---|
| Stream | stream |
Writes a string using ASCII encoding, each char converted to byte as (byte)s[i].
public void Write(string value)
| Type | Name | Description |
|---|---|---|
| string | value |
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.
public void Write(string value, int length)
| Type | Name | Description |
|---|---|---|
| string | value | |
| int | length |
Writes a byte array.
public void Write(byte[] value)
| Type | Name | Description |
|---|---|---|
| byte[] | value |
Writes a Matrix3x2 structure.
public void Write(Matrix3x2 value)
| Type | Name | Description |
|---|---|---|
| Matrix3x2 | value |
Writes a PointF structure as 2 float values.
public void Write(PointF p)
| Type | Name | Description |
|---|---|---|
| PointF | p |
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.
public abstract void Write(IPdfObject value)
| Type | Name | Description |
|---|---|---|
| IPdfObject | value |