Click or drag to resize

mxUtilsGetString Method (DictionaryString, Object, String, String)

imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Returns the value for key in dictionary as a string or the given default value if no value is defined for the key.

Namespace:  imbSCI.Graph.MXGraph.utils
Assembly:  imbSCI.Graph (in imbSCI.Graph.dll) Version: 0.3.70.
Syntax
C#
public static string GetString(
	Dictionary<string, Object> dict,
	string key,
	string defaultValue
)
Request Example View Source

Parameters

dict
Type: System.Collections.GenericDictionaryString, Object
Dictionary that contains the key, value pairs.
key
Type: SystemString
Key whose value should be returned.
defaultValue
Type: SystemString
Default value to return if the key is undefined.

Return Value

Type: String
Returns the string value for key in dict.
See Also