BlockSave Method (String, DxfVersion, Boolean)
|
Saves a block to a DXF file.
Namespace:
DXFReaderNET.Blocks
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public bool Save(
string file,
DxfVersion version,
bool isBinary
)
Public Function Save (
file As String,
version As DxfVersion,
isBinary As Boolean
) As Boolean
public:
bool Save(
String^ file,
DxfVersion version,
bool isBinary
)
member Save :
file : string *
version : DxfVersion *
isBinary : bool -> bool
METHOD Save(
file AS STRING,
version AS DxfVersion,
isBinary AS LOGIC
) AS LOGIC
Parameters
- file
- Type: SystemString
DXF file name. - version
- Type: DXFReaderNET.HeaderDxfVersion
Version of the dxf database version. - isBinary
- Type: SystemBoolean
Defines if the file will be saved as binary.
Return Value
Type:
BooleanReturn true if the file has been successfully save, false otherwise.
See Also