Solid Edge Draft Type Library
AddByDrawingView Method
Description
Block table will be created with source drawing view as input.
Syntax
Visual Basic
Public Function AddByDrawingView( _
   ByVal DrawingView As DrawingView, _
   ByVal SavedSettings As String, _
   ByVal AutoBalloon As Long, _
   ByVal BlocksInView As Long _
) As BlockTable
Parameters
DrawingView
SavedSettings
AutoBalloon
BlocksInView
Example
Imports System.Runtime.InteropServices

Public Class AddByDrawingView

    Private Sub Button1_Click_1(sender As System.Object, e As System.EventArgs) Handles Button1.Click
        Dim objApplication As SolidEdgeFramework.Application = Nothing
        Dim objDraftDoc As SolidEdgeDraft.DraftDocument = Nothing
        Dim DrawingView As SolidEdgeDraft.DrawingView = Nothing
        Dim DrawingViews As SolidEdgeDraft.DrawingViews = Nothing
        Dim BlockTables As SolidEdgeDraft.BlockTables = Nothing
        Dim BlockTable As SolidEdgeDraft.BlockTable = Nothing
        Dim Balloons As SolidEdgeFrameworkSupport.Balloons = Nothing
        Dim objType As Type = Nothing

        Try
            ' Create/get the application with specific settings
            objApplication = Marshal.GetActiveObject("SolidEdge.Application")

            If objApplication Is Nothing Then
                ' Get the type from the Solid Edge ProgID
                objType = Type.GetTypeFromProgID("SolidEdge.Application")
                ' Start Solid Edge
                objApplication = Activator.CreateInstance(objType)
                ' Make Solid Edge visible
                objApplication.Visible = True
            End If
            'Get reference to active document
            objDraftDoc = objApplication.ActiveDocument
            DrawingViews = objDraftDoc.ActiveSheet.DrawingViews
            BlockTables = objDraftDoc.BlockTables
            Balloons = objDraftDoc.ActiveSheet.Balloons

            'Add Method- By Drawing View
            For Each DrawingView In DrawingViews
                BlockTable = BlockTables.AddByDrawingView(DrawingView, "ISO", 1, 1)
            Next

            'Update Method
            For Each BlockTable In BlockTables
                BlockTable.Update()
            Next

        Catch ex As Exception
            MsgBox(ex.ToString)
        End Try
    End Sub


End Class
See Also

BlockTables Collection  | BlockTables Members