Embeds a window in a target hWin
Namespace:
Openfin.Desktop
Assembly:
OpenfinDesktop (in OpenfinDesktop.dll) Version: 17.6.0
Syntax public void embedInto(
IntPtr parentWindowHandle,
int width,
int height,
int left = 0,
int top = 0,
AckCallback callback = null,
AckCallback errorCallback = null
)
Parameters
- parentWindowHandle
- Type: SystemIntPtr
This will be the parent window handle - width
- Type: SystemInt32
The change in the width of the window. - height
- Type: SystemInt32
The change in the height of the window. - left (Optional)
- Type: SystemInt32
(Optional) The left position of the window. - top (Optional)
- Type: SystemInt32
(Optional) The top position of the window. - 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 succeeds.
See Also