Class LPComponent.TLPObjectList
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
(15 intermediate revisions by one user not shown) | |||
Line 5: | Line 5: | ||
</span></b> | </span></b> | ||
− | '''Package:''' [[Package | + | '''Package:''' [[Package Mitov.BasicLab|Mitov.BasicLab]] |
'''Unit:''' [[Unit LPComponent|LPComponent]] | '''Unit:''' [[Unit LPComponent|LPComponent]] | ||
− | '''Inherits:''' | + | '''Inherits:''' [[Class LPComponent.TLPVirtualObjectList|TLPVirtualObjectList]] |
== Syntax == | == Syntax == | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''type''' TLPObjectList = '''class'''( | + | '''type''' TLPObjectList = '''class'''( [[Class LPComponent.TLPVirtualObjectList|TLPVirtualObjectList, T]] ) |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''class''' TLPObjectList : '''public''' | + | '''class''' TLPObjectList : '''public''' [[Class LPComponent.TLPVirtualObjectList|TLPVirtualObjectList]] |
</code> | </code> | ||
=== Visual C++ (MFC): === | === Visual C++ (MFC): === | ||
<code> | <code> | ||
− | '''class''' CTLPObjectList : '''public''' | + | '''class''' CTLPObjectList : '''public''' [[Class LPComponent.TLPVirtualObjectList|CTLPVirtualObjectList]] |
</code> | </code> | ||
=== C# (.NET): === | === C# (.NET): === | ||
<code> | <code> | ||
− | '''public ref class''' | + | '''public ref class''' VclGenericObjectListProperty : [[Class LPComponent.TLPVirtualObjectList|Mitov.SignalLab.VirtualObjectList]] |
</code> | </code> | ||
== Summary == | == Summary == | ||
Line 33: | Line 33: | ||
== Description == | == Description == | ||
Defines list of objects for various components. | Defines list of objects for various components. | ||
+ | |||
+ | == Methods == | ||
+ | |||
+ | === Public === | ||
+ | *[[Method procedure LPComponent.TLPObjectList.Add(T)|procedure Add(AItem : T)]] - Adds item to the list. | ||
+ | |||
+ | == From [[Class LPComponent.TLPVirtualObjectList|TLPVirtualObjectList]] == | ||
== Properties == | == Properties == | ||
=== Public === | === Public === | ||
− | *[[Property LPComponent. | + | *[[Property LPComponent.TLPVirtualObjectList.Items|Items]] - Allows access to individual item from the list. |
+ | *[[Property LPComponent.TLPVirtualObjectList.Count|Count]] - Count items in the list. | ||
+ | *[[Property LPComponent.TLPVirtualObjectList.Current|Current]] | ||
+ | *[[Property LPComponent.TLPVirtualObjectList.Current|Current]] | ||
+ | |||
+ | == Methods == | ||
+ | |||
+ | === Public === | ||
+ | *[[Method function LPComponent.TLPVirtualObjectList.GetCurrent() : T|function GetCurrent() : T]] | ||
+ | *[[Method function LPComponent.TLPVirtualObjectList.MoveNext() : Boolean|function MoveNext() : Boolean]] | ||
+ | *[[Method function LPComponent.TLPVirtualObjectList.MoveNext() : Boolean|function MoveNext() : Boolean]] | ||
+ | *[[Method function LPComponent.TLPVirtualObjectList.GetCurrent() : T|function GetCurrent() : T]] | ||
+ | *[[Method function LPComponent.TLPVirtualObjectList.GetEnumerator() : TEnumerator|function GetEnumerator() : TEnumerator]] | ||
+ | *[[Method function LPComponent.TLPVirtualObjectList.GetReverse() : IOWReverseEnumeratorHost|function GetReverse() : IOWReverseEnumeratorHost]] | ||
+ | *[[Method procedure LPComponent.TLPVirtualObjectList.ForEach(TProc)|procedure ForEach(ALambda : TProc)]] | ||
+ | *[[Method procedure LPComponent.TLPVirtualObjectList.ForEachBack(TProc)|procedure ForEachBack(ALambda : TProc)]] | ||
[[Category:Classes]] | [[Category:Classes]] |
Latest revision as of 00:29, 26 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: Mitov.BasicLab
Unit: LPComponent
Inherits: TLPVirtualObjectList
Contents |
Syntax
Delphi:
type TLPObjectList = class( TLPVirtualObjectList, T )
C++ Builder:
class TLPObjectList : public TLPVirtualObjectList
Visual C++ (MFC):
class CTLPObjectList : public CTLPVirtualObjectList
C# (.NET):
public ref class VclGenericObjectListProperty : Mitov.SignalLab.VirtualObjectList
Summary
List of objects.
Description
Defines list of objects for various components.
Methods
Public
- procedure Add(AItem : T) - Adds item to the list.
From TLPVirtualObjectList
Properties
Public
- Items - Allows access to individual item from the list.
- Count - Count items in the list.
- Current
- Current