IEditBase Interface
Base interface for Web edit fields, such as, text field, text area, and editable input, such as number and range. HTML tag example: <input type=“text” value=“my first text field”/>

C# Syntax

public interface IEditBase 
Public Properties
 NameDescription
PropertyIsReadOnlyIndicates whether this field is read-only.  
PropertyIsRequiredIndicates whether this field is mandatory.  
PropertyMaxCharsInLineThe maximum number of characters allowed per line in this edit field.  
PropertyPlaceholder

The hint text that is displayed in the edit box until a value is entered into it.

C# Syntax

string Value {get;}
PropertyValueThe current text in this field.  
Top
Public Methods
 NameDescription
MethodSetValueSets the text inside the edit box.  
Top