Fam
Sets the caption family of the CRMEntryGroupBlock object. This property controls the captions that appear on each entry.
By default, the caption shown is the translation of the caption family (column names) plus the caption code (field name). You can change the caption by setting the Fam property value and adding a translation for the Fam value and the field name.
To view a list of column names, go to <My Profile> | Administration | Customization | Translations.
Values
Fam. Specifies the family name to use to find the translation for the entry caption. This must be a string value.
Examples
c = CRM.GetContextInfo('company','Comp_CompanyId');
CompanyRec = CRM.FindRecord('company','Comp_CompanyId='+c);
CompanyBlock = CRM.GetBlock("companyboxlong");
name = CompanyBlock.GetEntry('comp_name');
name.Fam = 'My caption family';
Response.Write(CompanyBlock.Execute(CompanyRec));
Sets the caption family of the comp_name entry to My caption family.