GefLinkFormat.LinkDocumentName (property)

Gets and sets the path for the document containing link source.
Syntax: VARIANT = object.LinkDocumentName
object.LinkDocumentName = VARIANT
Description: The LinkDocumentName property holds the source file name where the desired object resides.
The source screen must be saved for changes to take effect on the dependant screens.

Example:

Sub LinkFormat_LinkDocumentName()
    
    Dim oCimObj As GefObject
    Dim oCimLnkObj As GefLinkFormat
    
    Set oCimObj = CimGetObject
    Set oCimLnkObj = oCimObj.LinkFormat
    
    MsgBox "The source screen is " & oCimLnkObj.LinkDocumentName
    
End Sub