Hide Table of Contents

Selectively and Transparently Section a Section View Example (VB.NET)

This example shows how to selectively and transparently section a section view.

'-------------------------------------------------------------------------
' Preconditions: Verify that the assembly to open exists.
'
' Postconditions:
' 1. Opens the assembly.
' 2. Selects the component for selective sectioning.
' 3. Selects the components for transparent sectioning.
' 4. Selects the planes for sectioning.
' 5. Creates the SectionViewData object.
'    a. Sets the section method to zonal.
'    b. Sets to cap the sections.
'    c. Sets to generate a graphics-only section view.
'    d. Enables selective sectioning.
'       1. Sets the component selected in step 2 for selective
'          sectioning.
'       2. Sets the intersection zone.
'       3. Sets to exclude the component set in step 5.d.1 from
'          selective sectioning.
'    e. Enables transparent sectioning.
'       1. Sets the components selected in step 3
'          for transparent sectioning.
'       2. Sets to include the sectioned components set in step 5.e.1
'          in transparent sectioning.
'       3. Sets the level of transparency.
' 6. Creates the section view.
' 7. Examine the graphics area.
' 8. Click Section View twice in the Heads-Up View toolbar and
'    examine the Section View PropertyManager page.
'
' NOTE: Because the assembly is used elsewhere, do not save changes.
'------------------------------------------------------------------------
Imports SolidWorks.Interop.sldworks
Imports SolidWorks.Interop.swconst
Imports System.Runtime.InteropServices
Imports System
 
Partial Class SolidWorksMacro
 
    Public Sub main()
 
        Dim swModel As ModelDoc2
        Dim swModelDocExt As ModelDocExtension
        Dim selectiveArray(0) As Component2
        Dim selComponent As Component2
        Dim swSelMgr As SelectionMgr
        Dim transparentArray(1) As Component2
        Dim transComponent As Component2
        Dim transComponent2 As Component2
        Dim swSectionViewData As SectionViewData
        Dim swModelViewManager As ModelViewManager
        Dim transArray As Object
        Dim status As Boolean
        Dim errors As Integer
        Dim warnings As Integer
        Dim fileName As String
        Dim selArray As Object
 
        fileName = "C:\Users\Public\Documents\SOLIDWORKS\SOLIDWORKS 2018\samples\tutorial\floxpress\ball valve\ball_valve.sldasm"
        swModel = swApp.OpenDoc6(fileName, swDocumentTypes_e.swDocASSEMBLY, swOpenDocOptions_e.swOpenDocOptions_Silent, "", errors, warnings)
        swModelDocExt = swModel.Extension
 
        status = swModelDocExt.SelectByID2("Ball-1@ball_valve""COMPONENT", 0, 0, 0, True, 8, Nothing, 0)
        swSelMgr = swModel.SelectionManager
        selComponent = swSelMgr.GetSelectedObject6(1, -1)
        selectiveArray(0) = selComponent
        selArray = selectiveArray
 
        status = swModelDocExt.SelectByID2("Side-1@ball_valve""COMPONENT", 0, 0, 0, True, 32, Nothing, 0)
        status = swModelDocExt.SelectByID2("Side-2@ball_valve""COMPONENT", 0, 0, 0, True, 32, Nothing, 0)
        transComponent = swSelMgr.GetSelectedObject6(1, -1)
        transComponent2 = swSelMgr.GetSelectedObject6(2, -1)
        transparentArray(0) = transComponent
        transparentArray(1) = transComponent2
        transArray = transparentArray
 
        status = swModelDocExt.SelectByID2("Plane1""PLANE", 0, 0, 0, True, 1, Nothing, 0)
        status = swModelDocExt.SelectByID2("Plane2""PLANE", 0, 0, 0, True, 2, Nothing, 0)
        status = swModelDocExt.SelectByID2("Plane3""PLANE", 0, 0, 0, True, 4, Nothing, 0)
 
        swModelViewManager = swModel.ModelViewManager
        swSectionViewData = swModelViewManager.CreateSectionViewData()
 
        swSectionViewData.FirstColor = 16711680
        swSectionViewData.SecondColor = 65280
        swSectionViewData.ThirdColor = 255
        swSectionViewData.ShowSectionCap = True
        swSectionViewData.KeepCapColor = True
        swSectionViewData.GraphicsOnlySection = True
 
        swSectionViewData.ZonalSection = True
 
        swSectionViewData.SelectiveSection = True
        swSectionViewData.SelectiveSectioningList = selArray
        swSectionViewData.SectionedZones = 16 'swZonalSectionViewZones_e.swZonalSectionViewZones_swZonalSectionViewZone_5
        swSectionViewData.ExcludeSelectedItems = True
 
        swSectionViewData.TransparentSection = True
        swSectionViewData.TransparencyList = transArray
        swSectionViewData.SectionTransparentItemsTransparent = True
        swSectionViewData.TransparencyValue = 0.9
        status = swModelViewManager.CreateSectionView(swSectionViewData)
 
        swModel.ClearSelection2(True)
 
    End Sub
 
    ''' <summary>
    ''' The SldWorks swApp variable is pre-assigned for you.
    ''' </summary>
    Public swApp As SldWorks
 
 
End Class


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:   Selectively and Transparently Section a Section View Example (VB.NET)
*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) 2019 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.