Click or drag to resize

PersistentSettingsTryGetChild Method

Call this method to get a nested settings PersistentSettings instance, will return true if the key exists and value was set otherwise; will return false and value will be set to null.

Namespace:  Rhino
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax
public bool TryGetChild(
	string key,
	out PersistentSettings value
)

Parameters

key
Type: SystemString
[in] Key name
value
Type: RhinoPersistentSettings
[out] Will be set the child settings if the key is valid otherwise it will be null.

Return Value

Type: Boolean
Returns true if the key exists and value was set otherwise; returns false.
See Also