StartupEventArgs(ReadOnlyCollection<String>) Constructor

Definition

Initializes a new instance of the StartupEventArgs class.

public:
 StartupEventArgs(System::Collections::ObjectModel::ReadOnlyCollection<System::String ^> ^ args);
public StartupEventArgs (System.Collections.ObjectModel.ReadOnlyCollection<string> args);
new Microsoft.VisualBasic.ApplicationServices.StartupEventArgs : System.Collections.ObjectModel.ReadOnlyCollection<string> -> Microsoft.VisualBasic.ApplicationServices.StartupEventArgs
Public Sub New (args As ReadOnlyCollection(Of String))

Parameters

args
ReadOnlyCollection<String>

A ReadOnlyCollection<T> object that contains the command-line arguments of the application.

Remarks

The Startup event occurs when the application starts, if the application implements the Visual Basic Application Model. For more information, see Overview of the Visual Basic Application Model.

StartupEventArgs contains the command-line arguments of the application and indicates whether the application startup should be canceled.

Applies to

See also