public class TestAction : Eplan.EplApi.ApplicationFramework.IEplAction, Eplan.EplApi.ApplicationFramework.IEplActionChecked { //IEplAction Members \#region IEplActionChecked Members public int Checked(string strActionName, Eplan.EplApi.ApplicationFramework.ActionCallingContext actionContext) { if (strActionName == "TESTACTIONMIXED") { return 2; } else if (strActionName == "TESTACTION") { return 1; } else { return 0; } } \#endregion }
Name | Description | |
---|---|---|
Checked | One action can have the state on off or mixed. Return 0 for off, 1 for on, and 2 for mixed. |