API:Vcl.ComCtrls.TComboBoxExStrings.Move

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

Delphi

procedure Move(CurIndex: Integer; NewIndex: Integer); override;

C++

virtual void __fastcall Move(int CurIndex, int NewIndex);

プロパティ

種類 可視性 ソース ユニット
procedure
function
public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TComboBoxExStrings

説明

リスト内の文字列の位置を変更します。

Vcl.ComCtrls.TComboBoxExStrings.Move は System.Classes.TStrings.Move を継承しています。以下の内容はすべて System.Classes.TStrings.Move を参照しています。

リスト内の文字列の位置を変更します。

Move を使用すると、位置 CurIndex にある文字列を移動させ、位置 NewIndex を占有させます。 位置は、0 から始まるインデックスで指定します。 たとえば、次のコード行は、最初の位置にある文字列を、最後の位置に移動させます:

Delphi の場合:

MyStringsObject.Move(0, MyStringsObject.Count - 1);

C++ の場合:

MyStringsObject->Move(0, MyStringsObject->Count - 1);

文字列に関連オブジェクトがある場合、オブジェクトは新しい位置でもその文字列への関連性は保持します。

関連項目


コード サンプル