Object TTreeSetCursor
Unit
GContnrs
Declaration
type TTreeSetCursor = object(TObject)
Description
Hierarchy
Overview
Methods
Properties
Description
Methods
 |
function Equals(const Cursor: TTreeSetCursor) : Boolean; |
Check if the cursors designate the same item.
|
 |
function HasItem: Boolean; inline; |
Check if the cursors designate an item.
|
 |
function IsFirst: Boolean; inline; |
Returns true if the cursor designates the first element.
|
 |
function IsLast: Boolean; inline; |
Returns true if the cursor designates the last element.
|
 |
function IsNil: Boolean; inline; |
Equivalent to (not HasItem).
|
 |
procedure MoveNext; |
If cursor is nil then do nothing, else if cursor is last then cursor becomes nil cursor, otherwise move cursor to the next item.
|
 |
procedure MovePrevious; |
If cursor is nil then do nothing, else if cursor is first then cursor becomes nil cursor, otherwise move cursor to the previous item.
|
Properties
Generated by PasDoc 0.13.0 on 2014-07-29 16:12:40
|