12-30-2019 08:56 AM
I am new to using .NET. Often in a listing of a node (property or invoke) the selections begin with [S]. Can anyone clarify what that indicates?
Thank you
SWJ
12-30-2019 09:47 AM
The S is for static.
Static mean that the reference is not needed, the function returns the same value. You shouldn't need to wire a valid, initialized .NET object.
01-07-2020 07:43 AM
Thank you.