thread_object.Project Property

Returns a String value indicating the name of the project associated with a Thread object.

name_string = thread_object.Project

Prerequisites

None

Parameters

None

Remarks

This property returns a string containing the project name as originally established when the Thread object was created by its constructor.

Examples

Dim thread1 As New Thread("Test", "Myproject")   ' Create thread object
Console.Writeline ("Thread project: " & thread1.Project)
' Displays "Thread project: Myproject"

See Also

Thread Class | Thread Constructor | thread_object.Name | thread_object.StartProcedure