FMX.Graphics.TCanvas.EndScene

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure EndScene;

C++

void __fastcall EndScene(void);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Graphics.pas
FMX.Graphics.hpp
FMX.Graphics TCanvas

Description

Notifies the TCanvas object that the drawing is complete.

Call EndScene after the drawing on the TCanvas is complete.

To start the drawing session, call BeginScene.

If an application has called BeginScene and BeginScene returns True, then the application must call EndScene. See the recommended call pattern of EndScene in the BeginScene description.

See Also