Show / Hide Table of Contents

Class CommandEventArgs

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

Inheritance
object
CommandEventArgs
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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
object sender

The sender.

EventArgs e

The EventArgs.

Properties

View Source

CommandParameter

Gets or sets the command parameter.

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

EventArgs

Gets or sets the EventArgs.

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

Sender

Gets or sets the sender of the command.

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

Extension Methods

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