FullName Property
Description
Returns the measurement routine’s full file path and name.
Property type
Read-only property
Syntax
Visual Basic |
---|
Public Property FullName As String |
Return Type
Read-only String.
Remarks
If the file name of the measurement routine is C:\PCDMISW\PARTS\1.PRG, the FullName returns "C:\PCDMISW\PARTS\1.PRG".
Example
Sub Main (strText As String)
App As ObjectDim
Set
App = CreateObject ("PCDLRN.Application")Dim
Part As ObjectSet
Part = App.ActivePartProgramMsgBox Part.FullName
End
SubSee Also