write method
Contents
[
Hide
]write
Writes the text representation of a Boolean value to the text stream.
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | bool | A Boolean value. |
write
Writes a character to the text stream.
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | char | A character. |
write
Writes a string to the text stream.
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | str | A character string. |
write
Writes a character array to the text stream.
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | list | A character array. |
write
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | decimal |
write
Writes the text representation of an 8-byte floating-point value to the text stream.
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | float | A double value. |
write
Writes the text representation of a 4-byte floating-point value to the text stream.
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | float | A float value. |
write
Writes the text representation of a 4-byte signed integer to the text stream.
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | int | An integer value. |
write
Writes the text representation of an 8-byte signed integer to the text stream.
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | int | A long integer value. |
write
Writes the text representation of a 4-byte unsigned integer to the text stream.
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | int | An unsigned integer value. |
write
Writes the text representation of an 8-byte unsigned integer to the text stream.
def write(self, value):
...
| Parameter | Type | Description |
|---|---|---|
| value | int | An unsigned long integer value. |
See Also
- module
aspose.tex.io - class
TerminalWriter