Returns one of the values of the siArgumentFlags enum. These flags indicate how the argument values are passed to or from a command.
On error resume next
set args = Application.Commands("Twist").Arguments
for each a in args
LogMessage a.Name & ":" & a.Flags
next
|