Click or drag to resize

WindowshowAt Method

Shows the window if it is hidden at the specified location.

If the toggle parameter is set to true, the window will alternate between showing and hiding.

Namespace:  Openfin.Desktop
Assembly:  OpenfinDesktop (in OpenfinDesktop.dll) Version: 17.4.0
Syntax
C#
public void showAt(
	int left,
	int top,
	bool toggle,
	AckCallback callback = null,
	AckCallback errorCallback = null
)

Parameters

left
Type: SystemInt32
The left position of the window.
top
Type: SystemInt32
The right position of the window.
toggle
Type: SystemBoolean
If true, the window will alternate between showing and hiding in subsequent calls.
callback (Optional)
Type: Openfin.DesktopAckCallback
(Optional) A function that is called if the method succeeds.
errorCallback (Optional)
Type: Openfin.DesktopAckCallback
(Optional) A function that is called if the method fails. The reason for failure is passed as an argument.
See Also