狮猿社CATIA

CATIA VBA:Item跟Item2,Count跟Count

2020-08-17  本文已影响0人  锦囊喵

看到一段代码,不知道Item跟Item2,Count跟Count2的区别。欢迎有了解的小伙伴留言,谢谢!

代码如下

Public Function iSelItem(ByVal ItemNumber)
    If CATIA.SystemConfiguration.Release < "16" Then
        Set iSelItem = iSel.Item(ItemNumber)
    Else
        Set iSelItem = iSel.Item2(ItemNumber)
    End If
End Function


Public Function iSelCount()
    If CATIA.SystemConfiguration.Release < "16" Then
        iSelCount = iSel.Count
    Else
        iSelCount = iSel.Count2
    End If
End Function


上一篇下一篇

猜你喜欢

热点阅读