ICIEventRuleParams Interface
Use the ICIEventRuleParams interface to make changes to the Event Rule Condition settings.
interface ICIEventRuleParams : IDispatch
Members
For an example using this property, refer to the EventRuleCreation script in Script Examples.
Retrieves or specifies the description of the Event Rule.
HRESULT Description([out, retval] BSTR *pVal); HRESULT Description([in] BSTR newVal);
Example (C#):
objParams.Description = "This is a test event rule";
EFT v5.2 and later
For an example using this property, refer to the EventRuleCreation script in Script Examples.
Retrieves or specifies whether the Event Rule is enabled.
HRESULT Enabled([out, retval] VARIANT_BOOL *pVal); HRESULT Enabled([in] VARIANT_BOOL newVal);
Example (C#):
objParams.Enabled = true;
EFT v5.2 and later
For an example using this property, refer to the EventRuleCreation script in Script Examples.
Retrieves or specifies the name of the Event Rule.
HRESULT Name([out, retval] BSTR *pVal); HRESULT Name([in] BSTR newVal);
Example (C#):
objParams.Name = "TestEventRule";
EFT v5.2 and later
Related Topics