DataDictionary.Generated.meaning.setType_AsString C# (CSharp) Method

setType_AsString() public method

public setType_AsString ( string v ) : bool
v string
return bool
        public bool setType_AsString( string  v)
        {
            acceptor.meaning_type  temp = acceptor.StringTo_Enum_meaning_type(v);
            if (temp >= 0){
              aType = temp;
              __setDirty(true);
              NotifyControllers(null);
              return true;
            } // If
            return false;
        }