Implements a control that displays data in a grid.
You can fill the grid explicitely, or implement the Data event to display the grid contents on demand.
![]() | You should use the last method if you have thousands of rows to display. |
Constants | |
Both Horizontal None Vertical |
'Fill grid explicitely GridView1.Columns.Count = 4 GridView1.Rows.Count = 3 GridView1.Columns.Width = 52 GridView1.Rows[1].Height = 52 GridView1[0,0].Text = "0,0" GridView1[0,0].Alignment = 4 GridView1[1,1].Text = "1,1" GridView1[0,1].Text = "0,1" GridView1[1,0].Picture = Picture["image.png"]