Dynamicweb 8 Documentation
Render Method (TextEditorAddIn)

Name of the text area.
Width of the editor. Default is 565.
Height of the editor. Default is 280.
Text for the textarea.
Extra CSS values to be placed in HTML header.
Absolute virtual path to the skin that should be used by the editor.
Tells the editor to HTML encode some characters before posting the editor data. The encoded chars are: &, < and >.
Returns an instance of the editor.
Syntax
'Declaration
 
Public MustOverride Function Render( _ 
   ByVal name As String, _ 
   ByVal width As Integer, _ 
   ByVal height As Integer, _ 
   ByVal value As String, _ 
   ByVal css As String, _ 
   ByVal skinPath As String, _ 
   ByVal encodeOutput As Boolean _ 
) As String
public abstract string Render( 
   string name,
   int width,
   int height,
   string value,
   string css,
   string skinPath,
   bool encodeOutput 
)

Parameters

name
Name of the text area.
width
Width of the editor. Default is 565.
height
Height of the editor. Default is 280.
value
Text for the textarea.
css
Extra CSS values to be placed in HTML header.
skinPath
Absolute virtual path to the skin that should be used by the editor.
encodeOutput
Tells the editor to HTML encode some characters before posting the editor data. The encoded chars are: &, < and >.
Requirements

Target Platforms: 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

Reference

TextEditorAddIn Class
TextEditorAddIn Members

Send Feedback