InvisibleApp.ProcessID property (Visio)
Returns the unique identity of the current Microsoft Visio process. Read-only.
Syntax
expression.ProcessID
expression A variable that represents an InvisibleApp object.
Return value
Long
Remarks
The ProcessID property returns a value unique to the indicated instance. The application doesn't reuse the value until 4294967296 (2^32) more threads have been created on the current workstation.
Important
The value returned by ProcessID is not the same as the Windows Process ID of the current Visio instance.
Example
This Microsoft Visual Basic for Applications (VBA) program shows how to use the ProcessID property to determine the unique identity of the current Microsoft Visio process.
Sub ProcessID_Example ()
Dim vsoApplication As Visio.Application
'Get the current instance of Microsoft Office Visio.
Set vsoApplication = Visio.Application
'Prints the unique ID of the current Visio process.
Debug.Print "Visio Process identifier: "; vsoApplication.ProcessID
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.