 |
Symbol Reference |
 |
Classes |
 |
Functions |
|
|
TTeDefaultForm.Performance
This property operates the form buffering. It can possess the following values:
- ksfpNoBuffer - the form does not use any buffers. It has the most preferable value and the default value. The Buffering was widely used in ThemeEngine 2.x, but now ThemeEngine has well optimized code which allows to do without buffering. But if necessary you can use buffering as many times as you need.
- ksfpDoubleBuffer - the temporary buffer is created and is destroyed if necessary, basically for very short time intervals. It allows to use the memory more effectively, but it takes a lot of processor's time to create and destroy the buffer.
- ksfpPersitentBuffer - is the same as ksfpDoubleBuffer, except that the buffer is created once and is used all the time. ksfpDoubleBuffer is much faster, but it spends many system resources on the constant buffer maintenance.
- ksfpSharedBuffer - using this type of buffering, ThemeEngine creates one buffer of screen-size for the whole application. It is faster than both of the previous types of buffering, but it is necessary to create a screen-size buffer. Use this type of buffering if buffering is necessary for you, and your application has many forms.
Class
Declaration
property Performance: TTeFormPerformance;
Links
|
Copyright (c) 1997-2006. All rights reserved.
| |
|
|