DXFReaderNETControlWriteSVG Method
|
Exports the active layout visible entities to an SVG file.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntaxpublic bool WriteSVG(
string SVGFileName,
SVGUnits Units = SVGUnits.Pixel
)
Public Function WriteSVG (
SVGFileName As String,
Optional Units As SVGUnits = SVGUnits.Pixel
) As Boolean
public:
bool WriteSVG(
String^ SVGFileName,
SVGUnits Units = SVGUnits::Pixel
)
member WriteSVG :
SVGFileName : string *
?Units : SVGUnits
(* Defaults:
let _Units = defaultArg Units SVGUnits.Pixel
*)
-> bool
METHOD WriteSVG(
SVGFileName AS STRING,
Units AS SVGUnits := SVGUnits.Pixel
) AS LOGIC
Parameters
- SVGFileName
- Type: SystemString
The name of the SVG file to be written with full path. - Units (Optional)
- Type: DXFReaderNETSVGUnits
Output SVG units (width/height attributes and viewBox are expressed in these units).
Return Value
Type:
BooleanTrue if successful.
See Also