Hide Table of Contents

Create Surface Knit Feature Example (C#)

This example shows how to create a surface knit feature.

//-----------------------------------------------------
// Preconditions:
// 1. Verify that the specified part template
//    exists.
// 2. Open the Immediate window.
//
// Postconditions:
// 1. Opens a new part document.
// 2. Creates two surfaces.
// 3. Creates a surface knit feature using the two
//    selected surfaces.
// 4. Examine the graphics area, FeatureManager design
//    tree, and Immediate window.
//--------------------------------------------------------
 
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
using System.Runtime.InteropServices;
using System;
using System.Diagnostics;
 
namespace Macro2CSharp.csproj
{
    public partial class SolidWorksMacro
    {
        ModelDoc2 swModel;
        ModelDocExtension swModelDocExt;
        SketchManager swSketchManager;
        SketchSegment swSketchSegment;
        FeatureManager swFeatureManager;
        SelectionMgr swSelectionManager;
        Feature swFeature;
        SurfaceKnitFeatureData swSurfaceKnitFeature;
 
        bool boolstatus;
 
 
        public void Main()
        {
            //Open new part document and create two surfaces
            swModel = (ModelDoc2)swApp.NewDocument("C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2016\\templates\\Part.prtdot", 0, 0, 0);
            swModelDocExt = (ModelDocExtension)swModel.Extension;
            swSketchManager = (SketchManager)swModel.SketchManager;
            swFeatureManager = (FeatureManager)swModel.FeatureManager;
            swSelectionManager = (SelectionMgr)swModel.SelectionManager;
            boolstatus = swModelDocExt.SelectByID2("Top Plane""PLANE", 0, 0, 0, false, 0, null, 0);
            swModel.ClearSelection2(true);
            swSketchSegment = (SketchSegment)swSketchManager.CreateEllipse(-0.0415374666666667, 0, 0, 0.0534585333333333, 0, 0, -0.0415374666666667, 0.0208618666666667, 0);
            swModel.ClearSelection2(true);
            swSketchManager.InsertSketch(true);
            swModel.ClearSelection2(true);
            boolstatus = swModelDocExt.SelectByID2("Sketch1""SKETCH", 0, 0, 0, false, 4, null, 0);
            swFeatureManager.FeatureExtruRefSurface2(truefalsefalse, 0, 0, 0.05, 0.01, falsefalsefalse,
            false, 0.0174532925199433, 0.0174532925199433, falsefalsefalsefalsefalsefalsefalsefalse);
            swSelectionManager.EnableContourSelection = false;
            boolstatus = swModelDocExt.SelectByID2("Sketch1""SKETCH", 0, 0, 0, true, 0, null, 0);
            swModel.ClearSelection2(true);
            boolstatus = swModelDocExt.SelectByID2("Sketch1""SKETCH", 0, 0, 0, true, 1, null, 0);
            boolstatus = swModel.InsertPlanarRefSurface();
            swModel.ClearSelection2(true);
 
            // Select both surfaces and create surface knit feature
            boolstatus = swModelDocExt.SelectByID2("Surface-Extrude1""BODYFEATURE", 0, 0, 0, false, 1, null, 0);
            boolstatus = swModelDocExt.SelectByID2("Surface-Plane1""SURFACEBODY", 0, 0, 0, true, 1, null, 0);
            swFeature = (Feature)swFeatureManager.InsertSewRefSurface(truefalsefalse, 0.0001, 0.0001);
 
            // Get some surface knit feature data
            swSurfaceKnitFeature = (SurfaceKnitFeatureData)swFeature.GetDefinition();
            Debug.Print("Knit-surface feature: ");
            Debug.Print("  Knit tolerance: " + swSurfaceKnitFeature.KnitTolerance * 1000 + " mm");
            Debug.Print("  Maximum value for gap range: " + swSurfaceKnitFeature.MaxValueForGapRange * 1000 + " mm");
            Debug.Print("  Minimum value for gap range: " + swSurfaceKnitFeature.MinValueForGapRange * 1000 + " mm");
            Debug.Print("  Use gap filters? " + swSurfaceKnitFeature.UseGapFilters);
            Debug.Print("  Use merge entities? " + swSurfaceKnitFeature.UseMergeEntities);
            Debug.Print("  Try to form solid? " + swSurfaceKnitFeature.UseTryToFormSolid);
 
 
        }
 
        /// <summary>
        ///  The SldWorks swApp variable is pre-assigned for you.
        /// </summary>
        public SldWorks swApp;
    }
}


Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Create Surface Knit Feature Example (C#)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2018 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.