TdxFillOptionsMode Enum
Enumerates area fill modes available for rendering visual elements in DevExpress components.
#Declaration
TdxFillOptionsMode = (
Clear,
Solid,
Gradient,
Texture,
Hatch
);
#Members
Name | Description | Example |
---|---|---|
Clear
|
An area is transparent in this mode. All active fill settings are ignored. |
|
Solid
|
Default. An area is filled with a solid primary color. All other fill settings have no effect in this mode. |
|
Gradient
|
An area is filled with a linear gradient based on primary and secondary fill colors. The Gradient |
|
Texture
|
An area is tiled with a texture. All other fill settings have no effect in this mode. This mode is enabled automatically when you load an image to the Texture container. |
|
Hatch
|
An area is filled with a hatch pattern. The primary color is used to fill the background while the secondary color is applied to the active hatch pattern. |
#Remarks
The TdxFillOptions.Mode property references the TdxFillOptionsMode
type.
Note
Tdx
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Hatch
value in code.