piDogDataView.DataView.CellPressed

Scope: Public
Event CellPressed(row as integer, column as integer, x as integer, y as integer) As Boolean
Fired when the user clicks a cell. Return true to handle the click


// example to allow cellMouseDrag to fire on cells with cellHeight
If Me.CellHeight(row,column)>Me.RowHeight(row) And y>Me.cellheight(row,column)-5 Then
Return True
End If

//enables mousedrag in progressbar cells
If Me.CellType(row,column)=Me.TypeProgress Then
Return True
end if