Command.Arguments

説明

このコマンド用に定義されている各Argumentオブジェクトを含むArgumentCollectionを戻します。

C#構文

// get accessor

ArgumentCollection rtn = Command.Arguments;

// set accessor

Command.Arguments = ArgumentCollection;

VBScript の例

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