hiGetStringResource
hiGetStringResource(t_resourceName[t_resourceClass] ) =>g_resource/nil
Description
Gets resources from the resource database of the X Window System.
Arguments
Values Returned
Examples
The following examples are for an .Xdefaults file specifying the following resources:
Opus.someString: hello
Opus.someInt: 1
hiGetStringResource("someString")
=> "hello"
hiGetStringResource("someInt")
=> "1"
hiGetStringResource("notThere")
=> nil
Related Topics
Return to top