[]
Writes content of specified stream.
public void Write(Stream stream)
Public Sub Write(stream As 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)
Public Sub Write(value As String)
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)
Public Sub Write(value As String, length As Integer)
Writes a byte array.
public void Write(byte[] value)
Public Sub Write(value As Byte())
Type | Name | Description |
---|---|---|
byte[] | value |
Writes a Matrix3x2 structure.
public void Write(Matrix3x2 value)
Public Sub Write(value As Matrix3x2)
Type | Name | Description |
---|---|---|
Matrix3x2 | value |
Writes a PointF structure as 2 float values.
public void Write(PointF p)
Public Sub Write(p As PointF)
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)
Public MustOverride Sub Write(value As IPdfObject)
Type | Name | Description |
---|---|---|
IPdfObject | value |