Property ALRepack.TALRepack.AutoSizeBuffer
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: TALRepack
Contents |
Syntax
Delphi:
property AutoSizeBuffer : Boolean read FAutoSizeBuffer write SetAutoSizeBuffer default False;
C++ Builder:
__property bool AutoSizeBuffer = { read=FAutoSizeBuffer, write=SetAutoSizeBuffer, default=False };
Summary
Automatically select the buffer size.
Description
If this property is set to true and the format property is
enabled, the component will automatically calculate the size
of the output buffer. Otherwise the size of the output
buffer will be as specified by the BufferSize property.
Delphi example:
ALRepack1.AutoSizeBuffer := True;
C++ Builder example:
ALRepack1->AutoSizeBuffer = true;
Visual C++(MFC/Win32) example:
ALRepack1.AutoSizeBuffer = true;
C# example:
repack1.AutoSizeBuffer = true;