Vcl.ComCtrls.TTabControl.DoubleBuffered
Delphi
property DoubleBuffered;
C++
__property DoubleBuffered;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | TTabControl |
Description
Determines whether the control's image is rendered directly to the window or painted to an in-memory bitmap first.
Vcl.ComCtrls.TTabControl.DoubleBuffered inherits from Vcl.Controls.TWinControl.DoubleBuffered. All content below this line refers to Vcl.Controls.TWinControl.DoubleBuffered.
Determines whether the control's image is rendered directly to the window or painted to an in-memory bitmap first.
When DoubleBuffered is false, the windowed control paints itself directly to the window. When DoubleBuffered is true, the windowed control paints itself to an in-memory bitmap that is then used to paint the window. Double buffering reduces the amount of flicker when the control repaints, but is more memory intensive.
When a windowed control is a dock site and has an associated dock manager, it must be double-buffered.
See Also
Code Examples