DVUI

focusSubwindow

Focus a subwindow.

If you are doing this in response to an Event, you can pass that Event's "num" to change the focus of any further Events in the list.

Only valid between Window.beginand Window.end.

Parameters

#
subwindow_id:?Id
?Id
event_num:?u16
?u16

Source

Implementation

#
pub fn focusSubwindow(subwindow_id: ?Id, event_num: ?u16) void {
    currentWindow().focusSubwindow(subwindow_id, event_num);
}