ConfigAccessorGetValueByPath Method (ConfigNode, String) | 
 Reads a value from config node by a path.
 
    Namespace: 
   KSPDev.ConfigUtils
    Assembly:
   KSPDev_Utils.2.3 (in KSPDev_Utils.2.3.dll) Version: 2.3 for KSP v1
Syntaxpublic static string GetValueByPath(
	ConfigNode node,
	string[] pathKeys
)
 Request Example
		View SourceParameters
- node
 - Type: (Default Namespace)ConfigNode
A node to read data from. - pathKeys
 - Type: SystemString
An array of values that makes the full path. First node in the array is
            the top most component of the path. 
Return Value
Type: 
StringString value or 
null if path or value is not present in the
            
node.
See Also