Kimono.KCoreConfigSkeleton.AddItemPath C# (CSharp) Method

AddItemPath() public method

Register a path item of type string. The string value is interpreted as a path. This means, dollar expension is activated for this value, so that e.g. $HOME gets expanded. name="name" Name used to identify this setting. Names must be unique. name="reference" Pointer to the variable, which is set by readConfig() calls and read by writeConfig() calls. name="defaultValue" Default value, which is used when the config file does not yet contain the key of this item. name="key" Key used in config file. If key is null, name is used as key.
public AddItemPath ( string name, StringBuilder reference, string defaultValue, string key ) : KCoreConfigSkeleton.ItemPath
name string
reference StringBuilder
defaultValue string
key string
return KCoreConfigSkeleton.ItemPath
        public KCoreConfigSkeleton.ItemPath AddItemPath(string name, StringBuilder reference, string defaultValue, string key)
        {
            return (KCoreConfigSkeleton.ItemPath) interceptor.Invoke("addItemPath$$$$", "addItemPath(const QString&, QString&, const QString&, const QString&)", typeof(KCoreConfigSkeleton.ItemPath), typeof(string), name, typeof(StringBuilder), reference, typeof(string), defaultValue, typeof(string), key);
        }

Same methods

KCoreConfigSkeleton::AddItemPath ( string name, StringBuilder reference ) : KCoreConfigSkeleton.ItemPath
KCoreConfigSkeleton::AddItemPath ( string name, StringBuilder reference, string defaultValue ) : KCoreConfigSkeleton.ItemPath