FMX.InertialMovement.TRectD.Create

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

constructor Create(const Origin: TPointD); overload;
constructor Create(const Left, Top, Right, Bottom: Double); overload;

C++

__fastcall TRectD(const TPointD &Origin)/* overload */;
__fastcall TRectD(const double Left, const double Top, const double Right, const double Bottom)/* overload */;
TRectD() {}

プロパティ

種類 可視性 ソース ユニット
constructor public
FMX.InertialMovement.pas
FMX.InertialMovement.hpp
FMX.InertialMovement TRectD


説明

論理的単位の浮動小数点の座標を持つ TRectD 四角形を作成します。

Create は、Double 座標を持つ新しい TRectD 四角形オブジェクトを、構築および初期化します。

  • Origin は、四角形の左上隅を、TPointD 型の点として表します。
  • TopBottomRightLeft はそれぞれ、四角形の上下左右の辺の、Double の垂直または水平の座標です。
メモ: Create(const Origin: TPointD) は、指定された Origin にある空の四角形を作成します。

関連項目