Products

eDeviceType_Script

Purpose

Control how your scripts and devices interact.


Parameters

Public Enum eDeviceType_Script
    Disabled = 0 ' Set the device type to this to temporarily stop scripts from being run.
    Run_On_Any_Change = 1 ' Set to this type to run the script on a value or string change.
    Run_On_Value_Change = 2 ' Set to this type to run the script when the value changes.
    Run_On_String_Change = 3 ' Set to this type to run the script when the string changes.
End Enum


Returns

Nothing 


Example

Visual Basic
None