動作環境
C++ Builder XE4
RAD Studio 10.2 Tokyo Update 2 (追記: 2017/12/28)
TStringGridにおいて、セルの位置を変更したい。
参考 http://forum.lazarus.freepascal.org/index.php?topic=9413.0
プロパティRowとColを設定するようだ。
Unit1.cpp
//---------------------------------------------------------------------------
# include <vcl.h>
# pragma hdrstop
# include "Unit1.h"
//---------------------------------------------------------------------------
# pragma package(smart_init)
# pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_homeClick(TObject *Sender)
{
StringGrid1->Row = 1;
StringGrid1->Col = 1;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_downClick(TObject *Sender)
{
StringGrid1->Row += 1;
}
//---------------------------------------------------------------------------