Interface declaration for an action. When an action is to be registered for an add-in (an assembly) in the system, this interface must be implemented by a class of the add-in.
Implementation of a Action in an add-in
public class NewAction: IEplAction
{
public bool Execute(ActionCallingContext ctx)
{
// TODO:
// Add code
new Decider().Decide(EnumDecisionType.eOkDecision, "NewAction was invoked!", "", EnumDecisionReturn.eOK, EnumDecisionReturn.eOK);
return true;
}
public bool OnRegister(ref string Name, ref int Ordinal)
{
Name = "NewAction";
Ordinal = 20;
return true;
}
public void GetActionProperties(ref ActionProperties actionProperties)
{
actionProperties.Description= "Description of NewAction";
}