IBindingEditBox.MultiLine

Syntax

MultiLine: Boolean;

Description

The MultiLine property determines value of the MULTILINE parameter in binding string.

Comments

The MULTILINE parameter indicates whether the text is arranged in several lines. If the parameter is set to True, the editor can be used to arrange the text in several lines.

The MultiLine property is available if the MultiLineDefined property is set to True. If the MultiLine property is changed, the MultiLineDefined property is automatically set to True.

Example

Function CreateEditBoxBidning(Text: String): String;
Var
    BM: IBindingManager;
    EditBoxBinding: IBindingEditBox;
Begin
    BM := New BindingManager.Create;
    EditBoxBinding := BM.CreateByUi("EditBox"As IBindingEditBox;
    EditBoxBinding.Mandatory := True;
    EditBoxBinding.MaxLength := 30;
    EditBoxBinding.MultiLine := True;
    EditBoxBinding.ReadOnly := False;
    EditBoxBinding.Value := Text;
    Return EditBoxBinding.AsString;
End Function CreateEditBoxBidning;

This function generates binding string to use string value editor. The editor can be used to arrange the text in several lines, the maximum length of the text is 30 characters. The default editor text is passed by the Text input parameter.

See also:

IBindingEditBox