FMX.Memo.TCustomMemoModel.Lines

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Lines: TStrings read FLines write SetLines;

C++

__property System::Classes::TStrings* Lines = {read=FLines, write=SetLines};

Properties

Type Visibility Source Unit Parent
property public
FMX.Memo.pas
FMX.Memo.hpp
FMX.Memo TCustomMemoModel

Description

Provides access to the individual lines in the text of the memo.

Lines holds the text separated line by line. Lines is a TStrings object, so you can use TStrings methods to work with the Lines property.

See Also