Solid Edge Design Manager Object Library
PropertySets Property
DesignManager ActiveX DLL > Application Object : PropertySets Property
Description
Returns PropertySets
Property type
Read-only property
Syntax
Visual Basic
Public Property PropertySets As Object
Example
Option Infer On

Imports System
Imports System.Runtime.InteropServices

Namespace Examples
    Friend Class Program
        <STAThread>
        Shared Sub Main(ByVal args() As String)
            Dim application As DesignManager.Application = Nothing
            Dim propertySets As DesignManager.PropertySets = Nothing

            Try
                application = New DesignManager.Application()
                propertySets = CType(application.PropertySets, DesignManager.PropertySets)
                propertySets.Open("C:\Part1.par", True)
            Catch ex As System.Exception
                Console.WriteLine(ex)
            End Try
        End Sub
    End Class
End Namespace
using System;
using System.Runtime.InteropServices;

namespace Examples
{
    class Program
    {
        [STAThread]
        static void Main(string[] args)
        {
            DesignManager.Application application = null;
            DesignManager.PropertySets propertySets = null;

            try
            {
                application = new DesignManager.Application();
                propertySets = (DesignManager.PropertySets)application.PropertySets;
                propertySets.Open(@"C:\Part1.par", true);
            }
            catch (System.Exception ex)
            {
                Console.WriteLine(ex);
            }
        }
    }
}
See Also

Application Object  | Application Members