Namespace: Contensive.BaseClasses
Assembly: CPBase (in CPBase.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Function InputWysiwyg( _ 
   ByVal HtmlName As String,  _ 
   Optional ByVal HtmlValue As String = "",  _ 
   Optional ByVal UserScope As CPHtmlBaseClass.EditorUserScope = EditorUserScope.CurrentUser,  _ 
   Optional ByVal ContentScope As CPHtmlBaseClass.EditorContentScope = EditorContentScope.Page,  _ 
   Optional ByVal Height As String = "",  _ 
   Optional ByVal Width As String = "",  _ 
   Optional ByVal HtmlClass As String = "",  _ 
   Optional ByVal HtmlId As String = "" _ 
) As String
C#
public abstract string InputWysiwyg(
   string HtmlName,
   [OptionalAttribute] string HtmlValue,
   [OptionalAttribute] CPHtmlBaseClass.EditorUserScope UserScope,
   [OptionalAttribute] CPHtmlBaseClass.EditorContentScope ContentScope,
   [OptionalAttribute] string Height,
   [OptionalAttribute] string Width,
   [OptionalAttribute] string HtmlClass,
   [OptionalAttribute] string HtmlId
)
C++
public:
 String InputWysiwyg(
   String HtmlName,
   [OptionalAttribute] String HtmlValue,
   [OptionalAttribute] CPHtmlBaseClass.EditorUserScope UserScope,
   [OptionalAttribute] CPHtmlBaseClass.EditorContentScope ContentScope,
   [OptionalAttribute] String Height,
   [OptionalAttribute] String Width,
   [OptionalAttribute] String HtmlClass,
   [OptionalAttribute] String HtmlId
) abstract 
J#
public abstract string InputWysiwyg(
   string HtmlName,
   /** @attribute OptionalAttribute() */ string HtmlValue,
   /** @attribute OptionalAttribute() */ CPHtmlBaseClass.EditorUserScope UserScope,
   /** @attribute OptionalAttribute() */ CPHtmlBaseClass.EditorContentScope ContentScope,
   /** @attribute OptionalAttribute() */ string Height,
   /** @attribute OptionalAttribute() */ string Width,
   /** @attribute OptionalAttribute() */ string HtmlClass,
   /** @attribute OptionalAttribute() */ string HtmlId
)
JScript
public abstract  function InputWysiwyg(
   HtmlName : String,
   OptionalAttribute HtmlValue : String,
   OptionalAttribute UserScope : CPHtmlBaseClass.EditorUserScope,
   OptionalAttribute ContentScope : CPHtmlBaseClass.EditorContentScope,
   OptionalAttribute Height : String,
   OptionalAttribute Width : String,
   OptionalAttribute HtmlClass : String,
   OptionalAttribute HtmlId : String
) : String

See Also