Skip to main content
Version: 8.1

system.perspective.toggleDock

This function is used in Python Scripting.

Description​

Toggles a docked view.

Syntax​

system.perspective.toggleDock(id, [sessionId], [pageId])

Parameters​

TypeParameterDescription
StringidThe unique, preconfigured 'Dock ID' for the docked view. Is specified when a view is assigned as docked for a particular page (in Page Configuration).
StringsessionIdIdentifier of the Session to target. If omitted, the current Session will be used automatically. When targeting a different session, then the pageId parameter must be included in the call. [optional]
StringpageIdIdentifier of the Page to target. If omitted, the current Page will be used automatically. [optional]
Dictionary[String, String]paramsParameters that can be passed into the docked view. Must match the docked views View Parameters. [optional]

Returns​

Nothing

Scope​

Gateway, Perspective Session

note

This function will only work in the Gateway scope if both sessionId and pageId are supplied to the call.

Code Examples​

Code Snippet
# Toggles a docked view with ID "myDockID". We are passing in two parameters, called "myParam" and "myParam2".
system.perspective.toggleDock('myDockID', params = {'myParam':1,'myParam2':'Test'})

Keywords​

system perspective toggleDock, perspective.toggleDock