Solid Edge Framework Type Library
DeleteCustomProperty Method
Specify name of the material to be modified.
Specify name of the library in which material is available.
Specify index of the custom property to be deleted.
Description
Deletes the custom property of a material.
Syntax
Visual Basic
Public Sub DeleteCustomProperty( _
   ByVal bstrMatName As String, _
   ByVal bstrMatLibName As String, _
   ByVal nPropIndex As Integer _
) 
Parameters
bstrMatName
Specify name of the material to be modified.
bstrMatLibName
Specify name of the library in which material is available.
nPropIndex
Specify index of the custom property to be deleted.
Example
Imports System.Runtime.InteropServices

Public Class Form1

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim objApp As SolidEdgeFramework.Application = Nothing
        Dim objType As Type = Nothing
        Dim objMatTable As SolidEdgeFramework.MatTable = Nothing
        Dim strLibrary As String = "Materials"
        Dim objDocument As SolidEdgePart.PartDocument = Nothing
        Dim strMaterial As String = ""

        Try
            ' Get SE handle
            objApp = Marshal.GetActiveObject("SolidEdge.Application")

            If objApp Is Nothing Then
                ' Get the type from the Solid Edge ProgID
                objType = Type.GetTypeFromProgID("SolidEdge.Application")
                ' Start Solid Edge
                objApp = Activator.CreateInstance(objType)
                ' Make Solid Edge visible
                objApp.Visible = True
            End If
            ' Get material table object handle
            objMatTable = objApp.GetMaterialTable()
            strMaterial = "Steel"
            objMatTable.DeleteCustomProperty(strMaterial, strLibrary, 2)


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

    End Sub

End Class
See Also

MatTable Object  | MatTable Members