Exemple #1
0
    // -------------------------------------------------------------------------
    #endregion
    // -------------------------------------------------------------------------



    // -------------------------------------------------------------------------
    #region Internal Functions
    // -------------------------------------------------------------------------
    private int GetStandard()
    {
        if (standardType == StandardType.DATA)
        {
            return(standardData.GetCurrentValue());
        }
        else
        {
            return(standardRaw);
        }
    }
Exemple #2
0
 // -------------------------------------------------------------------------
 public void ActionCompareToTarget(IntData value)
 {
     ActionCompareToTarget(value.GetCurrentValue());
 }
Exemple #3
0
 // -------------------------------------------------------------------------
 public void ActionSetValue(IntData newValue)
 {
     // Get the integer value from the data and set it
     ActionSetValue(newValue.GetCurrentValue());
 }