property Editor.Visible as Boolean
Retrieves or sets a value that indicates whether the editor is visible or hidden.

TypeDescription
Boolean A boolean expression that indicates whether the editor is visible or hidden.
Use the Visible property to hide an editor. Use the Position property to change the order of the editors.

The following VB sample hides the "Handler" editor:

Record1("Handler").Visible = False

The following VC sample hides the "Handler" editor:

m_record.GetItem(COleVariant("Handler")).SetVisible( FALSE )