DXFReaderNETControlReadNC1 Method
|
Reads a Numerical Control Mastercam File and shows it.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntax public bool ReadNC1(
string NCFileName,
bool ShowDimensions = false,
bool ShowFilledArea = false
)
Public Function ReadNC1 (
NCFileName As String,
Optional ShowDimensions As Boolean = false,
Optional ShowFilledArea As Boolean = false
) As Boolean
public:
bool ReadNC1(
String^ NCFileName,
bool ShowDimensions = false,
bool ShowFilledArea = false
)
member ReadNC1 :
NCFileName : string *
?ShowDimensions : bool *
?ShowFilledArea : bool
(* Defaults:
let _ShowDimensions = defaultArg ShowDimensions false
let _ShowFilledArea = defaultArg ShowFilledArea false
*)
-> bool
METHOD ReadNC1(
NCFileName AS STRING,
ShowDimensions AS LOGIC := FALSE,
ShowFilledArea AS LOGIC := FALSE
) AS LOGIC
Parameters
- NCFileName
- Type: SystemString
The name of the NC1 file to be read with full path. - ShowDimensions (Optional)
- Type: SystemBoolean
If true the dimensinons will be showed. - ShowFilledArea (Optional)
- Type: SystemBoolean
If true the inner part will be filled with gradient hatch.
Return Value
Type:
BooleanTrue if successful.
See Also