Solid Edge Framework Type Library
Environments Property
Description
Returns a collection of Environment objects that are owned by the referenced Application object.
Property type
Read-only property
Syntax
Visual Basic
Public Property Environments As Environments
Example
Imports SolidEdgeFramework
Imports System.Runtime.InteropServices

Module Example
    <STAThread()> _
    Sub Main()
        Dim objApplication As SolidEdgeFramework.Application = Nothing
        Dim objEnvironments As SolidEdgeFramework.Environments = Nothing

        Try
            OleMessageFilter.Register()

            ' Connect to a running instance of Solid Edge.
            objApplication = Marshal.GetActiveObject("SolidEdge.Application")
            objEnvironments = objApplication.Environments

        Catch ex As Exception
            ' Write any errors to console.
            Console.WriteLine(ex.Message)
        Finally
            OleMessageFilter.Revoke()
        End Try
    End Sub
End Module
See Also

Application Object  | Application Members