Version

LayoutType Enumeration

Enumerates the different ways the WebHtmlEditor can be rendered.
Syntax
'Declaration
 
Public Enum LayoutType 
   Inherits System.Enum
public enum LayoutType : System.Enum 
Members
MemberDescription
CondensedLayout configured to use a condensed WebHtmlEditor, good for low bandwidth scenarios.
SkinLayout configured for use with graphical skins.
StandardThe standard WebHtmlEditor layout.
Remarks

The WebHtmlEditor can be rendered multiple ways depending on the scenario. LayoutType.Standard renders a standard editor. LayoutType.Condensed renders a condensed editor (good for low-bandwidth scenarios). LayoutType.Skin renders a editor optimized for displaying graphical skins. NOTE! Changing from one layout type to another WILL change some property values. For example, if you are using the LayoutType.Standard layout, change the WebHtmlEditor.BackColor to red, then change the WebHtmlEditor.LayoutType to LayoutType.Skin, that property will be nulled out. For this reason, it is suggested that you always change the WebHtmlEditor.LayoutType FIRST, before making other changes, to eliminate any chances of a property being overwritten.

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