class StatusChangedEventArgs

Parents
System.EventArgs

Brief

The arguments of the StatusChanged event (event when table's status changes).

Details

StatusChangedEventArgs is used when there is a subscription to StatusChanged event.

Using StatusChangedEventArgs [hide]

 tradesTable.StatusChanged +=new EventHandler<StatusChangedEventArgs>(tradesTable_StatusChanged);
 //...
 
 static void tradesTable_StatusChanged(object sender, StatusChangedEventArgs statusChangedArgs)
 {
     O2GTableStatus status = statusChangedArgs.Status;
     //...
 }

The type defined in the fxcore2.dll assembly. The namespace is fxcore2.

Public Properties

Status

The status.

Public Constructors

StatusChangedEventArgs

Constructor.

back