HypShowPOV

Data source types: All

Description

HypShowPOV() determines whether the POV toolbar is to be displayed or hidden.

Syntax

HypShowPov(bShowPov)

ByVal bShowPov As Boolean

Parameters

bShowPov: Set to TRUE to show the POV toolbar.

Return Value

Boolean. If the POV is shown, the return value is TRUE; otherwise, the return value is FALSE.

Example

Public Declare Function HypShowPov Lib "HsAddin" (ByVal bShowPov As Boolean) As Long

Sub DisConn()
X=HypShowPov(True)
End Sub