Show / Hide Table of Contents

Class CommandEventArgs

Defines arguments that wire up args of an event and parameter of a command.

Inheritance
System.Object
CommandEventArgs
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Sartorius.SAF.Presentation.Commands
Assembly: Sartorius.SAF.Presentation.dll
Syntax
public class CommandEventArgs

Constructors

View Source

CommandEventArgs(Object, EventArgs)

Creates a new instance of the CommandEventArgs class.

Declaration
public CommandEventArgs(object sender, EventArgs e)
Parameters
Type Name Description
System.Object sender

The sender.

System.EventArgs e

The EventArgs.

Properties

View Source

CommandParameter

Gets or sets the command parameter.

Declaration
public object CommandParameter { get; set; }
Property Value
Type Description
System.Object
View Source

EventArgs

Gets or sets the EventArgs.

Declaration
public EventArgs EventArgs { get; }
Property Value
Type Description
System.EventArgs
View Source

Sender

Gets or sets the sender of the command.

Declaration
public object Sender { get; }
Property Value
Type Description
System.Object

Extension Methods

CollectionExtensions.AddRange<T, TCollection>(TCollection, IEnumerable<T>)
SerializableObjectCloneExtension.Clone<T>(T)
  • View Source
Back to top Generated by DocFX