API Help
Eplan.EplApi.EServices Namespace / IVerification Interface / Execute Method
This object is to be checked.
Example

In This Topic
    Execute Method (IVerification)
    In This Topic
    Called by EPLAN when a specific object is to be checked. Implements the "check."
    Syntax
    void Execute( 
       StorableObject oObject1
    )
    void Execute( 
       StorableObject^ oObject1
    ) 

    Parameters

    oObject1
    This object is to be checked.
    Example
    The following example shows a method to prevent creating rectangle on page with plant "ETH". This is an example of verification with type - prevent. The error message will not be added into message dialog but message box will be displayed and creation of rectangle will be automatically canceled.
    public override void Execute(Eplan.EplApi.MasterData.MDPartsDatabaseItem oItem)
    {
        if (this.VerificationState == IVerification.VerificationState.RestrictiveState)
        {
            Rectangle oRectangle = oObject as Rectangle;
            if (oRectangle != null)
            {
                if (oRectangle.Page != null)
                {
                    if (oRectangle.Page.Properties.DESIGNATION_FULLPLANT == "ETH")
                    {
                        DoErrorMessage(oRectangle, oRectangle.Page.Name);
                    }
                }
            }
        }
    }
    See Also