DK for .NET | TatukGIS.NDK.TGIS_ShapeList | Classes
Ordered collection of TGIS_Shape objects. Container for shape iteration and retrieval in TGIS_LayerVector.Items property.
// C# public class TGIS_ShapeList : TObjectList { }
' VisualBasic Public Class TGIS_ShapeList Inherits TObjectList End Class
// Oxygene type TGIS_ShapeList = public class( TObjectList<TGIS_Shape> ) end;
→ TObjectList
PURPOSE:Store shapes in ordered list for fast indexed access. Provides TObjectList
BEHAVIOR:Wrapper class around generic TObjectList
USAGE:Access shapes:shape := layer.Items[0]; { first shape }Iterate:for shape in layer.Items do { process shape }
CONSTRAINTS:Framework-managed container. Not typically instantiated directly. Defined as explicit class (not alias) due to Delphi/C++Builder < XE8 compatibility requirements.