EnableTimerById

Enables selected timer, by ID

Signature

public void EnableTimerById(string timerId)

Parameters

timerId
string required

No description provided.

Return Type

void

Example

using System;
public class CPHInline
{
    public bool Execute()
    {
        //Define timer id you want to enable
        string timerId = "4fcc2d13-9bcf-4c18-9d91-821a15f4b6e5";
        
        CPH.EnableTimerById(timerId);         return true;
    }
}