VirtualUserScript GetBoolean Method (String, Boolean)C# API
Returns a boolean value held in the dictionary, or the defaultValue if the key cannot be found.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public bool GetBoolean(
	string key,
	bool defaultValue
)

Parameters

key
Type: System String
The key to be looked up in the dictionary.
defaultValue
Type: System Boolean
The value to return if the key is not present in the dictionary.

Return Value

A boolean value held in the dictionary, or the defaultValue if the key cannot be found.

Implements

IDataDictionary GetBoolean(String, Boolean)
See Also