Solid Edge FrameworkSupport Type Library
Remove Method
Specifies the name of the item to be removed.
Description
Removes a specified object from the referenced collection.
Syntax
Visual Basic
Public Sub Remove( _
   ByVal Name As String _
) 
Parameters
Name
Specifies the name of the item to be removed.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objFCFDataSets As SolidEdgeFrameworkSupport.FeatureControlFrameDataSets
    Dim objFCFDataSet As SolidEdgeFrameworkSupport.FeatureControlFrameDataSet
    ' Local variables to be declared here
    ' Create/get the application with specific settings
    On Error Resume Next
    Set objApp = GetObject(, "SolidEdge.Application")
    If Err Then
        Err.Clear
        Set objApp = CreateObject("SolidEdge.Application")
        Set objDoc = objApp.Documents.Add("SolidEdge.DraftDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    On Error GoTo 0
    'Get the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'Get the FeatureControlFrameDataSets collection from Document
    Set objFCFDataSets = objDoc.FeatureControlFrameDataSets
    'Add a new FCFDataSet
    Set objFCFDataSet = objFCFDataSets.Add(Name:="MyDataSet")
    'Delete the newly created FCFDataSet from the collection using Remove method
    Call objFCFDataSets.Remove(Name:="MyDataSet")
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objFCFDataSets = Nothing
    Set objFCFDataSet = Nothing
End Sub
See Also

FeatureControlFrameDataSets Collection  | FeatureControlFrameDataSets Members

Send comments on this topic.