Returns an ArgumentCollection containing each Argument object defined for this command.
set cmd = Application.Commands("Twist") for each a in cmd.Arguments LogString = a.Name & ":" & a.Flags & ":" if a.Flags = siArgumentInput or a.Flags = siArgumentInputOutput then LogString = LogString & CStr(a.Value) end if LogMessage LogString next |