A list that contains the arguments of the command. A command can also contain commands.
For example: SubString(UserName, 1, 3) contains two arguments: 1 and 3.
Syntax
| Visual Basic (Declaration) | |
|---|
Public ReadOnly Property Arguments As IList(Of String) |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As OECommand
Dim value As IList(Of String)
value = instance.Arguments
|
| C# | |
|---|
public IList<string> Arguments {get;} |
| Managed Extensions for C++ | |
|---|
public: __property IList<string>* get_Arguments(); |
| C++/CLI | |
|---|
public:
property IList<String>^ Arguments {
IList<String>^ get();
} |
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also