Solid Edge Framework Type Library
GetItemTypesInfoEx Method
Specify the File path (from which we will take the dataset type) for which available Item Types are to be fetched.
This is an array which will give Item Types available for the given Dataset Type (FilePath).
Description
Get information of ItemType for a particular Dataset Type
Syntax
Visual Basic
Public Sub GetItemTypesInfoEx( _
   ByVal bstrFilename As String, _
   ByRef pvarItemTypeList As Variant _
) 
Parameters
bstrFilename
Specify the File path (from which we will take the dataset type) for which available Item Types are to be fetched.
pvarItemTypeList
This is an array which will give Item Types available for the given Dataset Type (FilePath).
Example
Imports System.Runtime.InteropServices

Public Class Form1

    Private Sub GetItemTypesInfoEx_Click(sender As Object, e As EventArgs) Handles GetItemTypesInfoEx.Click
        Dim objSEApplication As SolidEdgeFramework.Application = Nothing
        Dim objTCE As SolidEdgeFramework.SolidEdgeTCE = Nothing
        Dim majorVersion As Object = Nothing
        Dim completeVersion As Object = Nothing
        Dim UserName As String
        Dim Password As String
        Dim Group As String
        Dim Role As String
        Dim URL As String
        Dim bTeamCenterMode As Boolean
        Dim ListOfItemTypes As Object = Nothing
        Dim FilePath As String = "C:\Test.dft"
        Try
            objSEApplication = Marshal.GetActiveObject("SolidEdge.Application")
            objSEApplication.DisplayAlerts = False

            objTCE = objSEApplication.SolidEdgeTCE
            Call objTCE.GetTeamCenterMode(bTeamCenterMode)
            If bTeamCenterMode = False Then
                objTCE.SetTeamCenterMode(True)
            End If
            'Specify Server Credentials
            UserName = "abc"
            Password = "abc"
            Group = ""
            Role = ""
            URL = "http://Servername:8085/tc"

            Call objTCE.ValidateLogin(UserName, Password, Group, Role, URL)
            objTCE.GetItemTypesInfoEx(FilePath, ListOfItemTypes)


        Catch ex As Exception
            MsgBox(ex.ToString)
            Clipboard.SetText(ex.ToString)
        End Try
    End Sub
End Class
See Also

SolidEdgeTCE Object  | SolidEdgeTCE Members