BBjWindow::getEventMask

Description

This method returns a four-byte string that contains the eventmask used to create the window or child window.

Syntax

Return Value Method
byte[] getEventMask()

Parameters

None.

Return Value

Returns a four-byte string that contains the eventmask used to create the window or child window.

Example

rem ' BBjWindow::getEventMask

sysgui = unt
open (sysgui)"X0"
title$ = "BBjWindow::getEventMask"
sysgui! = bbjapi().getSysGui()
window! = sysgui!.addWindow(100,100,300,75,title$,$00090083$)
mask$ = window!.getEventMask()
window!.addStaticText(101,25,25,250,25,"getEventMask: $"+hta(mask$)+"$",$$)
window!.setCallback(window!.ON_CLOSE,"eoj")
process_events

eoj:
release

See Also

BBjAPI

BBjControl

BBjWindow

Get Event Mask - SENDMSG() Function 21

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.