This method will insert an Input Textfield at the cursor position.


Namespace: SpiceLogic.WinHTMLEditor
Assembly: WinHTMLEditorControl (in WinHTMLEditorControl.dll)

Syntax

Visual Basic (Declaration)
Public Sub InsertInputTextField( _ 
   ByVal id As String,  _ 
   ByVal value As String,  _ 
   ByVal title As String _ 
)
C#
public void InsertInputTextField(
   string id,
   string value,
   string title
)
C++
public:
 void InsertInputTextField(
   String id,
   String value,
   String title
) sealed 
J#
public void InsertInputTextField(
   string id,
   string value,
   string title
)
JScript
public  function InsertInputTextField(
   id : String,
   value : String,
   title : String
)

Parameters

id
The id attribute of the inserting input text field
value
The value attribute of the inserting input text field
title
The title attribute of the inserting input text field.

See Also