Ok, thanks again Victor.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
sub main() {
node = FindObject("SomeNode");
dciID = FindDCIByName(node, "SomeDCIName");
dciObj = GetDCIObject(node, dciID);
println(dciObj->name);
println(dciObj->comments);
}global GlobalStringConstant = "String Value";
global GlobalStringConstant = "String Value";
sub main() {
typeofValue = typeof(GlobalStringConstant);
println "Type:-";
println typeofValue;
println "Value:-";
println GlobalStringConstant;
}
Type:-
null
Value:-
INFO: Script finished with rc=0
Type:-
string
String Value
INFO: Script finished with rc=0