Returns a form input element based on a content field definition


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

Syntax

Visual Basic (Declaration)
Public MustOverride Function GetFormInput( _ 
   ByVal ContentName As String,  _ 
   ByVal FieldName As String,  _ 
   Optional ByVal Height As String = "",  _ 
   Optional ByVal Width As String = "",  _ 
   Optional ByVal HtmlId As String = "" _ 
) As Object
C#
public abstract object GetFormInput(
   string ContentName,
   string FieldName,
   [OptionalAttribute] string Height,
   [OptionalAttribute] string Width,
   [OptionalAttribute] string HtmlId
)
C++
public:
 Object GetFormInput(
   String ContentName,
   String FieldName,
   [OptionalAttribute] String Height,
   [OptionalAttribute] String Width,
   [OptionalAttribute] String HtmlId
) abstract 
J#
public abstract object GetFormInput(
   string ContentName,
   string FieldName,
   /** @attribute OptionalAttribute() */ string Height,
   /** @attribute OptionalAttribute() */ string Width,
   /** @attribute OptionalAttribute() */ string HtmlId
)
JScript
public abstract  function GetFormInput(
   ContentName : String,
   FieldName : String,
   OptionalAttribute Height : String,
   OptionalAttribute Width : String,
   OptionalAttribute HtmlId : String
) : Object

Parameters

ContentName
FieldName
Height
Width
HtmlId

See Also