Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets a string representing the command line arguments.
Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property CommandLineArguments As String
'Usage
Dim instance As _DTE 
Dim value As String 
value = instance.CommandLineArguments
string CommandLineArguments { get; }
property String^ CommandLineArguments {
    String^ get ();
}
function get CommandLineArguments () : String
Property Value
Type: System.String
A string representing the command line arguments.
Remarks
The string returns everything listed after the program name on the command line.
Examples
Sub CommandLineArgumentsExample()
  MsgBox(DTE.CommandLineArguments)
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.