FMX.Types.TCorner

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

TCorner = (TopLeft, TopRight, BottomLeft, BottomRight);

C++

enum class DECLSPEC_DENUM TCorner : unsigned int { TopLeft, TopRight, BottomLeft, BottomRight, crTopLeft _DEPRECATED_ATTRIBUTE3("Use TCorner.TopLeft")  = 0, crTopRight _DEPRECATED_ATTRIBUTE3("Use TCorner.TopRight")  = 1, crBottomLeft _DEPRECATED_ATTRIBUTE3("Use TCorner.BottomLeft")  = 2, crBottomRight _DEPRECATED_ATTRIBUTE3("Use TCorner.BottomRight")  = 3 };

Propriétés

Type Visibilité  Source Unité  Parent
enum public
FMX.Types.pas
FMX.Types.hpp
FMX.Types FMX.Types

Description

Les valeurs TCorner identifient les coins d'un rectangle.

Une valeur TCorner est utilisée pour spécifier le coin à personnaliser.

TCorner définit les valeurs suivantes :

Valeur Signification

TopLeft

Identifie le coin supérieur gauche du rectangle.

TopRight

Identifie le coin supérieur droit.

BottomLeft

Identifie le coin inférieur gauche.

BottomRight

Identifie le coin inférieur droit.


Utilisez les valeurs TCorners pour sélectionner un ensemble de coins d'un rectangle.

Utilisez AllCorners pour sélectionner les quatre coins.

Voir aussi