BlueCielo Meridian Enterprise 2018 VBScript API Reference

<PageName>Page_IsVisible event

Occurs before one of the pages listed in About the property page events is shown in the Meridian client applications.

Syntax

<PageName>Page_IsVisible As Boolean

Remarks

Return False (default) to hide the property page.

Example

Function ExportPackagesPage_IsVisible()
    If Not Document Is Nothing Then
        'Add your code for document objects
        ExportPackagesPage_IsVisible = True
    ElseIf Not Folder Is Nothing Then
        'Add your code for folder objects
    End If
End Function