save method
Contents
[
Hide
]save
Saves the object’s data to the current DataStreamSupporter
.
def save(self):
...
save
Saves the object’s data to the specified stream.
def save(self, stream):
...
Parameter | Type | Description |
---|---|---|
stream | io.RawIOBase | The stream to save the object’s data to. |
save
Saves the object’s data to the specified file location.
def save(self, file_path):
...
Parameter | Type | Description |
---|---|---|
file_path | str | The file path to save the object’s data to. |
save
Saves the object’s data to the specified file location.
def save(self, file_path, over_write):
...
Parameter | Type | Description |
---|---|---|
file_path | str | The file path to save the object’s data to. |
over_write | bool | if set to true over write the file contents, otherwise append will occur. |
See Also
- module
aspose.cad
- class
DataStreamSupporter