IVerificationBase Interface
In This Topic
Base interface declaration for a check in EPLAN. If an add-in wants to add an undefined check to EPLAN projects please implement interface IVerification or IPartVerification.
Syntax
public interface IVerificationBase : IMessage
public interface class IVerificationBase : public IMessage
Public Methods
| Name | Description |
| DoHelp | Called by EPLAN when the help text to the message should be shown. the function itself must take care to call the matching help system with the correct language. The easiest way is to call a simple dialog or message box. (Inherited from Eplan.EplApi.EServices.IMessage) |
| GetMessageText | Called by EPLAN when the message text should be shown. (Inherited from Eplan.EplApi.EServices.IMessage) |
| OnEndInspection | Called by EPLAN when a check routine has been completed. |
| OnRegister | Called by EPLAN when the new check is added to the system. |
| OnStartInspection | Called by EPLAN when a check routine starts in the system. |
Top
See Also