DataDictionary.Generated.DBField.setValue C# (CSharp) Method

setValue() public method

public setValue ( string v ) : void
v string
return void
        public void setValue( string  v)
        {
            aValue = v;
              __setDirty(true);
              NotifyControllers(null);
        }

Usage Example

        public override void visit(DBField obj, bool visitSubNodes)
        {
            obj.setValue("");

            base.visit(obj, visitSubNodes);
        }