added comments

git-svn-id: trunk@7801 -
This commit is contained in:
mattias 2005-09-23 18:41:50 +00:00
parent 512971c25c
commit 020f860d11

View File

@ -102,13 +102,13 @@ type
property CursorTextXY: TPoint read GetCursorTextXY write SetCursorTextXY;
property EditorControl: TWinControl read GetEditorControl;// normally TSynEdit
property FileName: string read GetFileName;
property Lines: TStrings read GetLines write SetLines;
property LineText: string read GetLineText write SetLineText;
property Lines: TStrings read GetLines write SetLines;// the whole file
property LineText: string read GetLineText write SetLineText;// source of current line
property ReadOnly: Boolean read GetReadOnly write SetReadOnly;
property SelEnd: Integer read GetSelEnd write SetSelEnd;
property SelStart: Integer read GetSelStart write SetSelStart;
property SourceText: string read GetSourceText write SetSourceText;
property TopLine: Integer read GetTopLine write SetTopLine;
property SourceText: string read GetSourceText write SetSourceText;// the whole file
property TopLine: Integer read GetTopLine write SetTopLine;// first visible line
property Selection: string read GetSelection write SetSelection;
end;