DxfDocumentSave Method (Stream, Boolean)
|
Saves the database of the actual DxfDocument to a stream.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public bool Save(
Stream stream,
bool isBinary
)
Public Function Save (
stream As Stream,
isBinary As Boolean
) As Boolean
public:
bool Save(
Stream^ stream,
bool isBinary
)
member Save :
stream : Stream *
isBinary : bool -> bool
METHOD Save(
stream AS Stream,
isBinary AS LOGIC
) AS LOGIC
Parameters
- stream
- Type: System.IOStream
Stream. - isBinary
- Type: SystemBoolean
Defines if the file will be saved as binary.
Return Value
Type:
BooleanReturn true if the stream has been successfully saved, false otherwise.
Remarks
On Debug mode it will raise any exception that might occur during the whole process.
The caller will be responsible of closing the stream.
See Also