HTMLTaskPane.Visible Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 InfoPath 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.
Important: This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.