DataDictionary.Rules.Action.UpdatedVariable C# (CSharp) Method

UpdatedVariable() public method

Indicates the name of the updated variable, if any
public UpdatedVariable ( ) : string
return string
        public string UpdatedVariable()
        {
            string retVal = null;

            VariableUpdateStatement update = Statement as VariableUpdateStatement;
            if (update != null)
            {
                retVal = update.VariableIdentification.ToString();
            }

            return retVal;
        }