By default SettingsStyleSheet is set to an empty string:
SettingsStyleSheet = ""
With this setting, the first few lines of an exported settings XML file look similar to this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<REFLECTION_SETTINGS version="1">
<CREATOR product="Reflection for HP" version="9.0" build="105" type="1"/>
The following statement sets SettingsStyleSheet to a file name:
SettingsStyleSheet = "C:\Program Files\Attachmate\Reflection\XML\Html.xsl"
With this setting, the first few lines of an exported settings XML file look similar to this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml:stylesheet type="text/xsl" href="C:\Program Files\Attachmate\Reflection\XML\Html.xsl"?>
<REFLECTION_SETTINGS version="1">
<CREATOR product="Reflection for HP" version="9.0" build="105" type="1"/>
The following statement sets SettingsStyleSheet to a URL:
SettingsStyleSheet = "http://website.com/XSL/html.xsl"
With this setting, the first few lines of an exported settings XML file look similar to this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml:stylesheet type="text/xsl" href="http://website.com/XSL/html.xsl"?>
<REFLECTION_SETTINGS version="1">
<CREATOR product="Reflection for HP" version="9.0" build="105" type="1"/>