public class FrameOverlay
extends java.lang.Object
To use this class, create a frame, display it or enable it and then call contain method:
def frame f "Hello Overlay!".
enable all with frame f.
using com.goldencode.p2j.direct.* from java.
FrameOverlay:contain(frame f:handle).
After contain is called, the frame will be displayed in a separate top-level window.| Constructor and Description |
|---|
FrameOverlay() |
| Modifier and Type | Method and Description |
|---|---|
static void |
contain(CommonFrame frame)
Contains a frame in an overlay window.
|
static void |
contain(FrameWidget frame)
Contains a frame in an overlay window.
|
static void |
contain(handle hFrame)
Contains a frame in an overlay window.
|
public static void contain(handle hFrame)
This method is used to enable a frame to be displayed in a separate top-level window. It takes a handle to the frame as a parameter.
hFrame - A handle to the frame.public static void contain(CommonFrame frame)
frame - The frame to be contained in the overlay window.public static void contain(FrameWidget frame)
This method is used to enable a frame to be displayed in a separate top-level window. It takes a handle to the frame as a parameter.
frame - The frame to be contained in the overlay window.