Solid Edge Framework Type Library
GetOutOfDateDocuments Method
Returns the list of out of date documents from cache.
Description
Gives the list of outofdate documents
Syntax
Visual Basic
Public Sub GetOutOfDateDocuments( _
   ByRef pvarListOfOutOfDateDocuments As Variant _
) 
Parameters
pvarListOfOutOfDateDocuments
Returns the list of out of date documents from cache.
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 plistoffiles As Variant
    Call objSolidEdgeInsightXT.GetOutOfDateDocuments(plistoffiles)

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

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