IEplActionChecked Interface
In This Topic
Interface to switch the status of an action on or off.
If this interface is not used, the action is off by default.
If you implement this interface in an action class, you can set the status of the respective action to "on".
• 0: Unchecked ("off")
• 1: Checked ("on")
• 2: Mixed status ("indeterminate")
Syntax
public interface IEplActionChecked
public interface class IEplActionChecked
Example
For code examples, please refer to the
Modifying action status chapter.
Public Methods
| | Name | Description |
 | Checked | The status of an action can be "on", "off" or "indeterminate".
The values are:
• 0 for "off"
• 1 for "on"
• 2 for "indeterminate" |
Top
See Also