DXFReaderNETControlReadDXF Method
|
Reads and displays the DXF file indicated by the FileName property or by the DXFFileName parameter.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public bool ReadDXF(
string DXFFileName = "",
bool DisplayAfterRead = true
)
Public Function ReadDXF (
Optional DXFFileName As String = "",
Optional DisplayAfterRead As Boolean = true
) As Boolean
public:
bool ReadDXF(
String^ DXFFileName = L"",
bool DisplayAfterRead = true
)
member ReadDXF :
?DXFFileName : string *
?DisplayAfterRead : bool
(* Defaults:
let _DXFFileName = defaultArg DXFFileName ""
let _DisplayAfterRead = defaultArg DisplayAfterRead true
*)
-> bool
METHOD ReadDXF(
DXFFileName AS STRING := "",
DisplayAfterRead AS LOGIC := TRUE
) AS LOGIC
Parameters
- DXFFileName (Optional)
- Type: SystemString
The name of the file to be read with full path. - DisplayAfterRead (Optional)
- Type: SystemBoolean
If set to false the DXF file isn't displayed after read (Default value = true).
Return Value
Type:
BooleanTrue if read is successfull.
See Also