DataDictionary.Generated.Paragraph.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.Paragraph_type  temp = acceptor.StringTo_Enum_Paragraph_type(v);
            if (temp >= 0){
              aType = temp;
              __setDirty(true);
              NotifyControllers(null);
              return true;
            } // If
            return false;
        }