Solid Edge Draft Type Library
Defaults_ShowEdgesHiddenTangentEdgesHiddenByOtherParts Property
Description
Specifies whether tangent edges that are hidden by other parts should be displayed by default for a new part added to an assembly for the next drawing view update. This setting can be set to TRUE only if ShowEdgesHiddenByOtherParts is set to TRUE.
Property type
Read-write property
Syntax
Visual Basic
Public Property Defaults_ShowEdgesHiddenTangentEdgesHiddenByOtherParts As Boolean
Example
Imports System.IO
Imports System.Runtime.InteropServices

Module Example
    <STAThread()> _
    Sub Main()
        Dim objApplication As SolidEdgeFramework.Application = Nothing
        Dim objDraftDocument As SolidEdgeDraft.DraftDocument = Nothing
        Dim objSheet As SolidEdgeDraft.Sheet = Nothing
        Dim objDrawingViews As SolidEdgeDraft.DrawingViews = Nothing
        Dim objDrawingView As SolidEdgeDraft.DrawingView = Nothing
        Dim objModelMembers As SolidEdgeDraft.ModelMembers = Nothing
        Dim objModelMember As SolidEdgeDraft.ModelMember = Nothing

        Try
            OleMessageFilter.Register()

            objApplication = Marshal.GetActiveObject("SolidEdge.Application")
            objDraftDocument = objApplication.ActiveDocument
            objSheet = objDraftDocument.ActiveSheet
            objDrawingViews = objSheet.DrawingViews

            ' Loop through all drawing views in current sheet.
            For Each objDrawingView In objDrawingViews
                objDrawingView.ShowEdgesHiddenByOtherParts = True
                objDrawingView.Defaults_ShowEdgesHiddenTangentEdgesHiddenByOtherParts = True
            Next
        Catch ex As Exception
            Console.WriteLine(ex.Message)
        Finally
            OleMessageFilter.Revoke()
        End Try
    End Sub
End Module
See Also

DrawingView Object  | DrawingView Members  | Solid Edge ST3 - What's New