FieldName

Specifies the name by which the field is referenced.

This property is only applicable to EntryBlocks retrieved by using the GetBlock(BlockName) method, that is, EntryBlocks not associated with specific fields.

Values

Any string value.

Example

Entry = CRM.GetBlock("entry");
Entry.FieldName = "My check box";
Entry.EntryType = 45;
CRM.AddContent(Entry.Execute());
Response.Write(CRM.GetPage());

Sets the field caption of the new entry to My check box, and then sets the field type to check box (45).