Cell Attributes collection

I'm looking for a nice, clean way to specify other attributes for a GridCell when putting values in it.

For example, I might want to store the database Id in the cell where I display the name.

Does something like this exist? Or, would it be possible to add a collection to the GridCell object where I could add multiple key/value pairs?

This is for Aspose.Grid.Desktop 1.9.4.4

Hi,

I am not very clear about your need. If you need to correspond a GridCell object to some custom data, please create a Hashtable object (using the System.Collection package), and put the GridCell object as the key and the custom data as the value. Then you can easily get the custom data by the GridCell object.

Thank you,