Vcl.Graphics.TFillStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFillStyle = (fsSurface, fsBorder);

C++

enum DECLSPEC_DENUM TFillStyle : unsigned char { fsSurface, fsBorder };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.Graphics.pas
Vcl.Graphics.hpp
Vcl.Graphics Vcl.Graphics

Description

TFillStyle indicates the type of color change defines the boundary of a possibly non-rectangular region n a canvas.

TFillStyle values determine what type of color changes define the boundaries of a (possibly) non-rectangular region of a canvas, as indicated in the following table.



Value Meaning

fsSurface

The region is defined as all area that has a specified color. When another color is encountered, it is taken as the boundary of the region.

fsBorder

The region is defined as all area that does not have a specified color. When the specified color is encountered, it is taken as the boundary of the region.