Solid Edge Framework Type Library
IsItemTypeSmartCodesConfigured Method
Item type.
Boolean argument to tell given item type smart code configured or not.
Description
Tells given item type is Smart Codes configured or not
Syntax
Visual Basic
Public Sub IsItemTypeSmartCodesConfigured( _
   ByVal bstrItemType As String, _
   ByRef pvbIsSmartCodesConfigured As Boolean _
) 
Parameters
bstrItemType
Item type.
pvbIsSmartCodesConfigured
Boolean argument to tell given item type smart code configured or not.
Example
Private Sub Command1_Click()
    On Error Resume Next
    Dim objApplication As SolidEdgeFramework.Application
    Dim objSolidEdgeInsightXT  As SolidEdgeFramework.SolidEdgeInsightXT
    
    Set objApplication = GetObject(, "SolidEdge.Application")
    Set objSolidEdgeInsightXT = objApplication.SolidEdgeInsightXT

    Dim sItemType As String
    Dim bSmartCodesConfigured As Boolean
    
    sItemType = "Item"
    bSmartCodesConfigured = False
    Call objSolidEdgeInsightXT.IsItemTypeSmartCodesConfigured(sItemType, bSmartCodesConfigured)

    Set objSolidEdgeInsightXT = Nothing
    Set objApplication = Nothing
End Sub
See Also

SolidEdgeInsightXT Object  | SolidEdgeInsightXT Members  | Solid Edge ST4 - What's New