FMX.Graphics.TBrushKind

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TBrushKind = (None, Solid, Gradient, Bitmap, Resource);

C++

enum class DECLSPEC_DENUM TBrushKind : unsigned int { None, Solid, Gradient, Bitmap, Resource };

Properties

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

Description

Specifies the style characteristics of a brush.

TBrushKind specifies the pattern painted by a brush.

The following table lists the possible values of the TBrushKind type:

Value Meaning

None

The brush has no pattern. The filling of the object is transparent.

Solid

The brush's pattern is a solid color.

Gradient

The brush's pattern is gradient.

Bitmap

The brush's pattern is defined by a bitmap image.

Resource

The brush's pattern is a specified brush resource.

bkGrab

The brush's pattern is a visual object.

See Also

Code Examples