Solid Edge Design Manager Object Library
Application Object
Members 
DesignManager ActiveX DLL : Application Object
Description
Design Manager Application
Remarks
Please note that "Design Manager" and "View and Markup" application are separated from ST9 onwards. Hence it is recommended to use VMApplication object to create/get an instance of "View and Markup" application.  All "View and Markup" application related methods are available under VMApplication 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

            Try
                application = New DesignManager.Application()
            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;

            try
            {
                application = new DesignManager.Application();
            }
            catch (System.Exception ex)
            {
                Console.WriteLine(ex);
            }
        }
    }
}
See Also

Application Members