Selection and Copy of Fixed Rows and Columns

I am using the TAdvColumnGrid and using the column headers to give a description of what data is in each column and the row headers to show the date and time. When the user selects the whole grid and copies the data I want them to get the column and row headers as well. Currently it only copies the non-fixed cells to the clipboard.
Thanks,
Chris.


Fixed cells are not selectable. You can copy all cells (including fixed cells) programmatically though with setting grid.SaveFixedCells = true and call grid.CopyToClipboard.