Individual
The "Individual" class represents a single individual in the genogram. You can
obtain a list of all the individuals in the document from the
Individuals properties.
The list of properties that can be called from the Individual class is
described in detail within GenoPro. The properties can be viewed via the
Tag Definition.
Tag Definitions for the
Individual class
Sample Code
JavaScript
for (var iIndividual = 0; iIndividual < Individuals.Count;
iIndividual++) {
var oIndividual = Individuals(iIndividual);
// display the name
Report.WriteBr(oIndividual.Name);
}
VBScript
For Each oIndividual In Individuals
' display the name
Report.WriteBr(oIndividual.Name)
Next
|