HTMLTaskPane.Visible Property

Definition

Gets or sets a value indicating that the task pane represented by the HTMLTaskPaneObject object, which is always a custom task pane, is visible in the Microsoft Office InfoPath 2003 user interface.

public:
 property bool Visible { bool get(); void set(bool value); };
public bool Visible { get; set; }
member this.Visible : bool with get, set
Public Property Visible As Boolean

Property Value

Implements

Examples

In the following example, the Visible property of the TaskPane object is used to display a custom task pane:

TaskPane objTaskPane = thisXDocument.View.Window.TaskPanes[0];
objTaskPane.<span class="label">Visible</span> = true;

Remarks

The Visible property of the HTMLTaskPane object is one of the properties inherited from the TaskPaneObject object when the type of the task pane is 0, which means that it is the custom task pane.

Setting the Visible property to true causes the task pane to appear in the user interface, and setting it to false causes it to be removed from the user interface.

Applies to