Create

Declaration: TVector.Create (AOwner: TComponent);
The call to the constructor Create instantiates an object of the class TVector and allocates the necessary heap memory. If there is not enough memory space on the heap, an exception is generated ('not enough memory on heap').

Hint: The elements of a newly created vector are not initialized by default. Use the methods Clear or Fill to set them to a defined initial state.