Argument.Flags

Description

Returns one of the values of the siArgumentFlags enum. These flags indicate how the argument values are passed to or from a command.

C# Syntax

// get accessor

siArgumentFlags rtn = Argument.Flags;

Examples

VBScript Example

On error resume next

set args = Application.Commands("Twist").Arguments

for each a in args

	LogMessage a.Name & ":" & a.Flags

next