Solid Edge Framework Type Library
GetPDMCachePath Method
Specifies the Cache path of an active connection.
Description
Get Cache Path
Syntax
Visual Basic
Public Sub GetPDMCachePath( _
   ByRef bStrCachePath As String _
) 
Parameters
bStrCachePath
Specifies the Cache path of an active connection.
Example
Private Sub Command1_Click()
    On Error Resume Next
    Dim objApplication As SolidEdgeFramework.Application
    Dim objSolidEdgeInsightXT  As SolidEdgeFramework.SolidEdgeInsightXT
    
    Set objApplication = GetObject(, "SolidEdge.Application")
    Set objSolidEdgeInsightXT = objApplication.SolidEdgeInsightXT

    Dim bstrCacheFilePath As String
    
    Call objSolidEdgeInsightXT.GetPDMCachePath(bstrCacheFilePath)
    MsgBox (bstrCacheFilePath)

    Set objSolidEdgeInsightXT = Nothing
    Set objApplication = Nothing
End Sub
See Also

SolidEdgeInsightXT Object  | SolidEdgeInsightXT Members  | Solid Edge ST4 - What's New