0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

C++ Builder XE4, 10.2 Tokyo > TStringGrid > セルの位置を変更する > プロパティRowとColを設定する

Last updated at Posted at 2016-12-26
動作環境
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;
}
//---------------------------------------------------------------------------

qiita.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?