Table of Contents
InvisibleElementIds Property

Gets or sets a list of invisible element Ids.

Syntax
 public String InvisibleElementIds { get; set; }
Remarks

Use this property to explicitly hide certain elements. For example, if you wish to hide the "Print" button in your PDF, then you can set this property to the ID of the "Print" button.

To specify multiple visible element Ids, use ";" to separate them. For example, "menu;contents;".

If you use ASP.NET, be aware that this property takes the client side DHTML element ID, not the ASP.NET server side control ID. Usually you can use the server control's ClientID property to get the corresponding client side DHTML element ID.

This property is often used together with VisibleElementIds.

This property is automatically cleared after each conversion.

See Also