===== GetSetting (Function) ===== ==== Format ==== **getsetting** ( [[stringexpressions|program_name]], [[stringexpressions|setting_key_name]] ) returns [[stringexpressions|string_expression]] ==== Description ==== Retrieve a setting from the system registry (or other persistent storage). The [[stringexpressions|program_name]] and [[stringexpressions|setting_key_name]] are required by this function to access a previously saved setting. The empty string "" will be returned if the requested setting has not been previously set. The saved value will be available to other BASIC-256 programs and should remain available for an extended period. This statement may be disabled because of potential system security issues. Availability may be configured in the IDE by going to the Edit>Preferences menu. ==== See Also ==== [[SetSetting|SetSetting]] ==== Example ==== setsetting "thisprogram", "testsetting", "value of setting" print getsetting("thisprogram", "testsetting") will print value of setting ==== New To Version ==== 0.9.6.38