thread_object.StartProcedure Property

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

name_string = thread_object.StartProcedure

Prerequisites

None

Parameters

None

Remarks

This property returns a String containing the name of the start procedure as originally established by the Thread object constructor.

Examples

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

See Also

Thread Class | Thread Constructor | thread_object.Name | thread_object.Project