FMX.Graphics.TPathData.HLineTo
Delphi
procedure HLineTo(const X: Single);
C++
void __fastcall HLineTo(const float X);
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
procedure function |
public | FMX.Graphics.pas FMX.Graphics.hpp |
FMX.Graphics | TPathData |
Description
Ajoute une ligne au TPathData en cours.
La ligne est définie par le point de fin de TPathData et un point qui dépend du paramètre spécifié.
Le paramètre X
spécifie la coordonnée X du point de fin de la ligne.
HLineTo ajoute le point de fin de la ligne au tableau Points. Le point de fin de la ligne est déplacé horizontalement entre le dernier point de TPathData et le point ayant la coordonnée X égale à X
. Le point ajouté est du type LineTo.
Pour déplacer le point de départ de la ligne, appelez la méthode MoveTo ou MoveToRel avant d'appeler HLineTo.
Pour trouver le point de fin de TPathData, appelez la méthode LastPoint.
Pour voir la différence entre les résultats de HLineTo et de HLineToRel, voir le tableau suivant :
Chemin d'accès initial | Résultat HLineTo(a) | Résultat HLineToRel(a) |
---|---|---|
Voir aussi
- FMX.Graphics.TPathData.Points
- FMX.Graphics.TPathPointKind
- FMX.Graphics.TPathData.ClosePath
- FMX.Graphics.TPathData.CurveTo
- FMX.Graphics.TPathData.CurveToRel
- FMX.Graphics.TPathData.HLineToRel
- FMX.Graphics.TPathData.LineTo
- FMX.Graphics.TPathData.LineToRel
- FMX.Graphics.TPathData.LastPoint
- FMX.Graphics.TPathData.MoveTo
- FMX.Graphics.TPathData.MoveToRel
- FMX.Graphics.TPathData.SmoothCurveTo
- FMX.Graphics.TPathData.SmoothCurveToRel
- FMX.Graphics.TPathData.VLineTo
- FMX.Graphics.TPathData.VLineToRel