Home > comp > gb.qt > gridview > .data 
  [3.0]
 fr de es it nl pl pt pt_BR mk sq ca ar fa vi ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration  
Documentation
History
 
GridView.Data (gb.qt)
Syntax
EVENT Data ( Row AS Integer, Column AS Integer )

This event is raised when the GridView needs the data stored in a specified cell.

You must provide the cell contents by using the fields of the Data property.

Examples

PUBLIC SUB GridView1_Data(Row AS Integer, Column AS Integer)
GridView1.Data.Text = "Gambas " & Row & "," & Column
END