|
|
|
|
|
WinDisableEffect (Function) In french: FenDésactiveEffet Disables the visual effects of the graphic engine of WINDEV (for a use in TSE mode for example). This function is useful when an application must be run on a computer with limited graphic capacities or for the TSE mode if the bandwidth is limited. IF InTSEMode() = True THEN
WinDisableEffect(effectAnimation + effectTranslucentBorder + effectDDW + effectBlur)
END
Syntax
WinDisableEffect(<Effect to disable>)
<Effect to disable>: Integer constant (or combination of constants) The effect to disable corresponds to one or more of the following constants: | | effectAnimation | Disables the animations of the windows. | effectBlur | Disables the halo around the buttons. | effectDDW | Disables the DDW feature. | effectTranslucentBorder | Disables the translucent border of windows (border used in Windows XP or 2003). |
Remarks - WinDisableEffect is equivalent to:
- In TSE, by default:
- window animations are disabled.
- the animation linked to the DDW (Dim Disabled Window) is disabled. The DDW is enabled by default in TSE.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|