EasyLanguage Object Reference

TextBox Class

The TextBox class is a form control that displays a text string within a container in a form that can be edited by the user. The text will wrap within the specified width and height of the control.  Scroll bars will appear if the text wraps outside the specified width and height boundaries.

Namespace: elsystem.windows.forms

[ Expand All ]
Properties
  Name Type Description
Public property Multiline boolean True to allow multiple lines of text in the control.  False (default) ignores carriage returns and limits text to a single line.

   Additional properties, methods, and events are described in the classes listed under Inheritance Hierarchy (see below).

Methods
  Name Description
Public property Create () Initializes a new instance of a TextBox.   
Public property Create (text,width,height) Initializes a new instance of a TextBox.   Parameters include the Text to be displayed followed by the Width and Height of the control.
Public property RemoveGradient Removes the gradient.
Public property SetLinearGradient(mode, startColor, endColor) Creates a linear gradient textbox background. See LinearGradientMode and Color for lists of possible values.
Public property SetRadialGradient(startColor, endColor) Creates a radial gradient textbox background. See Color for a list of possible values.
Inheritance Hierarchy

elsystem.Object

  elsystem.DotNetObject

    elsystem.ELComponent

      elsystem.ELWFComponent

        elsystem.windows.forms.Control

          elsystem.windows.forms.TextBox