Rediger

StartupEventArgs Class

Definition

Provides data for the My.Application.Startup event.

public ref class StartupEventArgs : System::ComponentModel::CancelEventArgs
[System.Runtime.InteropServices.ComVisible(false)]
public class StartupEventArgs : System.ComponentModel.CancelEventArgs
[<System.Runtime.InteropServices.ComVisible(false)>]
type StartupEventArgs = class
    inherit CancelEventArgs
Public Class StartupEventArgs
Inherits CancelEventArgs
Inheritance
StartupEventArgs
Attributes

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.

Constructors

Name Description
StartupEventArgs(ReadOnlyCollection<String>)

Initializes a new instance of the StartupEventArgs class.

Properties

Name Description
CommandLine

Gets the command-line arguments of the application.

Applies to

See also