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