GetObjectsObject for Robocopy, or any option

Hi,

I'm trying to use GetOptionsObject("Robocopy") to get the path out of my options, but I don't know the name of the property.  Is there a way in script I could enumerate all the options objects and then enumerate all the properties?  This way I wouldn't have to ask again if I need the values from a different option.

 

Thanks!

-Nelson

 Hi Nelson

 
There should be code completion for most options, however it seems it's missing for RoboCopy and possibly others, I'll get this looked at when the team gets back from vacation. I have attached a code completion xml file for Robocopy, save it to your FinalBuilder 7\CodeCompletion folder. 
 
This code will get you started :
 
dim opt
set opt = GetOptionsObject("RoboCopy")
if not (opt is nothing) then
 msgbox opt.RoboCopyPath
end if
 
 
 

 

FBRoboCopyCC.xml (471 B)