LookUpFamily

Sets the look-up family for an entry.

The look-up family defines what entries appear in the list for the entry. For example, if the look-up family is DayName, a list of days is displayed.

This property is only applicable if the EntryType property is set to 21.

Values

LookUpFamily. Specifies the name of the family. This must be a string value.

Examples

NewE = CRM.GetBlock("entry");
NewE.EntryType = 21;
NewE.Caption = "Days of the week";
NewE.LookupFamily = "DayName";
EG.AddBlock(NewE);
CRM.AddContent(EG.Execute());
Response.Write(CRM.GetPage());

Creates a new selection entry group that uses the DayName family for selection items.