Reports.Dataset of custom Class

Hi everyone,

I made my first steps with the Reports.Dataset Interface. I followed the simple sample from Xojo which you can find here. The data should not come from a database, just a single custom class

I would like to update this sample for my custom class. What do I need to modify to read the class properties to a Dataset Field? The sample above can only show each single String entry of an array.

MyClass

Name As String Age As String EyeColor As Color ' maybe to color a ReportField Height As Double Weight As Double Notes() As MyNote ' for Reports Body-Section ...
MyNote

Note As String Private As Boolean

Can anyone give some step-by-step tips please?

Thanks