Solid Edge File Properties Object Library
Count Property
Description
Number of property sets
Property type
Read-only property
Syntax
Visual Basic
Public Property Count As Long
Example
Imports RevisionManager
Imports System.Runtime.InteropServices

Module Example

    Sub Main()
        Dim objPropertySets As SolidEdgeFileProperties.PropertySets = Nothing
        Dim iCount As Integer

        Try
            ' Create a new instance of PropertySets.
            objPropertySets = New SolidEdgeFileProperties.PropertySets
            objPropertySets.Open("C:\Part1.par", True)
            iCount = objPropertySets.Count
            objPropertySets.Close()
        Catch ex As Exception
            ' Write any errors to console.
            Console.WriteLine(ex.Message)
        Finally
            ' Release COM Objects.
            If Not (objPropertySets Is Nothing) Then
                Marshal.ReleaseComObject(objPropertySets)
                objPropertySets = Nothing
            End If
        End Try
    End Sub

End Module
See Also

IJPropertySets Collection  | IJPropertySets Members