Description
Saves all the NURBS curves and(or) NURBS surfaces as a separate file using a specified new path name and file format, and returns an RFErrorCode value indicating whether an error occurs.
Syntax
Function RFDocument.ExportCurvesSurfaces(filename As String, type As RF3DFileType, bCurve As Boolean, bSurface As Boolean, bShowEntityOnly As Boolean) As RFErrorCode
The ExportCurvesSurfaces syntax has these parts:
| Part | Description |
|---|---|
| filename | [IN] String Required. String expression indicating a new file name including folder path. |
| type | [IN] RF3DFileType Required. File format to save. |
| bCurve | [IN] Boolean Required. It determines NURBS curves are saved or not. |
| bSurface | [IN] Boolean Required. It determines NURBS surfaces are saved or not. |
| bShowEntityOnly | [IN] Boolean Required. It determines whether only visible NURBS curves and(or) NURBS surfaces are saved. |
Remarks