HypShowPov

Data provider types: All

Description

HypShowPov() shows or hides the POV toolbar.

Syntax

HypShowPov(bShowPov)

ByVal bShowPov As Boolean

Parameters

bShowPov: Set to True to show the POV toolbar. Set to False to hide the POV toolbar.

Return Value

Returns 0 if successful; otherwise, the appropriate error code.

Example

Public Declare Function HypShowPov Lib "HsAddin" (ByVal bShowPov As Boolean) As Long
Sub Example_HypShowPov()
X=HypShowPov(True)
End Sub