public void TriggerEvent(string eventName, bool useArgs = true)
Name of the custom event trigger defined with a UI custom trigger
True
Forward the currently available arguments to the custom trigger
void
using System;
public class CPHInline
{
public bool Execute()
{
//Define the eventName
string eventName = "SB_Docs_Trigger";
//Fire the custom event trigger by eventName and
//sending the current available arguments to it
CPH.TriggerEvent(eventName, true)
return true;
}
}