StartupEventArgs(ReadOnlyCollection<String>) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.