TTMSFMXTableViewItem Data

Hi,

Is it possible to do something with a TTMSFMXTableViewItem similar to what can be done with a TListViewItem regarding adding of user defined data e.g.

NewItem:=MyListView.Items.Add;
NewItem.Data['GameGUID']:=GameGUID;

Thanks,

Ken

Hi, 


You can 4 properties that can be used to assign user defined data:

    property DataBoolean: Boolean;
    property DataValue: Single;
    property DataString: String;
    property DataObject: TObject;

Yes, I saw thouse but needed more. I was just being lazy as didn't really want to go to the extent of using the DataObject.

Sorry, this is currently not possible. There is no property exposed that can handle this.

No problem.