DataDictionary.Generated.StructureElement.setMode_AsString C# (CSharp) Method

setMode_AsString() public method

public setMode_AsString ( string v ) : bool
v string
return bool
        public bool setMode_AsString( string  v)
        {
            acceptor.VariableModeEnumType  temp = acceptor.StringTo_Enum_VariableModeEnumType(v);
            if (temp >= 0){
              aMode = temp;
              __setDirty(true);
              NotifyControllers(null);
              return true;
            } // If
            return false;
        }