Vcl.Graphics.TCustomCanvas.FillRect

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure FillRect(const Rect: TRect); virtual; abstract;

C++

virtual void __fastcall FillRect(const Winapi::Windows::TRect &Rect) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.Graphics.pas
Vcl.Graphics.hpp
Vcl.Graphics TCustomCanvas

Description

Fills the specified rectangle on the canvas using the current brush.

Override the FillRect method to implement filling of a rectangular region using the current brush. The region is filled including the top and left edges of the rectangle, but excluding the bottom and right edges.

See Also