Version

SaveSkin(String,String) Method

Save the current WebHtmlEditor configuration as an XML skin file.
Syntax
'Declaration
 
Public Overloads Sub SaveSkin( _
   ByVal filepath As String, _
   ByVal name As String _
) 
public void SaveSkin( 
   string filepath,
   string name
)

Parameters

filepath
The filepath to which the XML file will be saved.
name
The name of the skin (for example "The Purple Skin"). This is used by the designer.
Remarks

This method saves the current WebHtmlEditor configuration as an XML skin file. Load the skin by using the WebHtmlEditor.LoadSkin method. For more information about creating and using skins, see Using Skins.

This method DOES NOT save information about individual toolbar items. For example, if you have changed the background color of a SINGLE button, this will not be persisted to the skin file. You must use the global properties for controlling style (such as the WebHtmlEditor.ButtonStyle property of WebHtmlEditor).

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also