# smart-forms/0.6/js/formBuilder/properties/manipulators.js

Smart Forms – when you need more than just a contact form, version 0.6. 25 lines.

- Page: https://pluginprobe.com/plugins/smart-forms/0.6/code/js/formBuilder/properties/manipulators.js
- Raw: https://pluginprobe.com/plugins/smart-forms/0.6/raw/js/formBuilder/properties/manipulators.js
- Modified: 2014-01-14T04:58:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/smart-forms/0.6/code/js/formBuilder/properties/manipulators.js#L10-L20`.

```javascript
"use strict;"


/************************************************************************************* Manipulstors ***************************************************************************************************/
function RedNaoBasicManipulator()
{

}

RedNaoBasicManipulator.prototype.GetValue=function(propertiesObject,propertyName,additionalInformation)
{
    return propertiesObject[propertyName];
}

RedNaoBasicManipulator.prototype.SetValue=function(propertiesObject,propertyName,value,additionalInformation)
{
    propertiesObject[propertyName]=value;
}





var RedNaoBasicManipulatorInstance=new RedNaoBasicManipulator();

```
