Skip to main content
A StringObjectDictionary is a collection of key-value pairs. The key is a string and the value can be an integer, float, string, boolean or datetime.

Constructors

StringObjectDictionary()

Initializes a new instance of the StringObjectDictionary class.

Methods

getInteger(String)

Returns Integer value for key
Returns: CRMScript.Global.Integer - The value for the given key. Example:

getFloat(String)

Returns Float value for key
Returns: CRMScript.Global.Float - The value for the given key. Example:

getString(String)

Returns String value for key
Returns: CRMScript.Global.String - The value for the given key. Example:

getBool(String)

Returns boolean value for key
Returns: CRMScript.Global.Bool - The value for the given key. Example:

getDateTime(String)

Returns value for key
Returns: CRMScript.Global.DateTime - The value for the given key. Example:

insertInteger(String,Integer)

Inserts or updates value for given key
Returns: CRMScript.Global.Void Example:

insertString(String,String)

Inserts or updates value for given key
Returns: CRMScript.Global.Void Example:

insertFloat(String,Float)

Inserts or updates value for given key
Returns: CRMScript.Global.Void Example:

insertBool(String,Bool)

Inserts or updates value for given key
Returns: CRMScript.Global.Void Example:

insertDateTime(String,DateTime)

Inserts or updates value for given key
Returns: CRMScript.Global.Void Example: