Method function SLSimpleDataBuffer.ISLRealBufferArray.Resize(Integer;Integer;Boolean) : Boolean
From Mitov Wiki Doc
(Difference between revisions)
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.
Class: ISLRealBufferArray
Contents |
Syntax
Delphi:
function Resize( ARows : Integer, ACols : Integer, PreserveData : Boolean ) : Boolean;
C++ Builder:
bool __fastcall Resize( int ARows, int ACols, bool PreserveData );
Visual C++ (MFC):
Resize( ARows, ACols, PreserveData );
Summary
Resizes the array and the contained buffers.
Description
Call this method to resize the array and the contained buffers.
Parameters
| Parameter | Description |
|---|---|
| ARows | Number of buffers (Rows) |
| ACols | Number of elements in each buffer (Cols) |
| PreserveData | If true the old data will be preserved when |
| resizing. |