This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 409
1d54f369 6ef1 afd0 219a f5df610e9d79
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Loads a DXF file.
Namespace: netDxf
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public static DxfDocument Load(
Stream stream,
IEnumerable<string> supportFolders
)
VB
Public Shared Function Load (
stream As Stream,
supportFolders As IEnumerable(Of String)
) As DxfDocument
C++
public:
static DxfDocument^ Load(
Stream^ stream,
IEnumerable<String^>^ supportFolders
)
F#
static member Load :
stream : Stream *
supportFolders : IEnumerable<string> -> DxfDocument
- Stream
- Stream.
- IEnumerable(String)
- List of the document support folders.
DxfDocument
Returns a DxfDocument. It will return null if the file has not been able to load.
Loading DXF files prior to AutoCad 2000 is not supported.
On Debug mode it will raise any exception that might occur during the whole process.
The caller will be responsible of closing the stream.
DxfVersionNotSupportedException |