Hidden

Hides or shows an entry.

As a result, the entry is not displayed when the corresponding CRMEntryGroupBlock object is executed. For example, this can be useful if you want to assign an entry to an entry group, but don't want the users to be able to view it.

Values

This property can take one of the following values:

  • true. Specifies to hide an entry.
  • false. Specifies to show an entry.
Example

r = CRM.FindRecord('Company','Comp_companyid=22');
EG = CRM.GetBlock('companyboxlong');
NewE = EG.GetBlock('comp_revenue');
NewE.Hidden = true;
CRM.AddContent(EG.Execute));
Response.Write(CRM.GetPage());

Hides the company_revenue entry block.