Can a Thread Priority be changed during the thread execution?

I’ve been searching it in the Language reference (Thread.Priority).
In Notes there is a clear information about the meaning of the Priority value, but only in the Example says:

Thread1.Priority = Thread.LowestPriority

However this comment does not say explicitly that Priority cannot be changed during the thread execution.
Thanks for any help.

The Priority can be changed while a Thread is running.

Play around with the example project to see the effect:
Examples/Desktop/Threading/ThreadingExample

I’ve added a note about this to the Thread.Priority page.

Thank you Paul.
With the example it is completely clear!