April 18, 2024

Dynamic Windows Function [dw_splitbar_new]

Syntax

HWND dw_splitbar_new(int type, HWND topleft, HWND bottomright, unsigned long id)

Parameters

int type: Value can be DW_VERT or DW_HORZ.
HWND topleft: Handle to the window to be top or left.
HWND bottomright: Handle to the window to be bottom or right.
unsigned long id: An ID to be used with dw_window_from_id() or 0L.

Returns

HWND A handle to a splitbar window or NULL on failure.

Description

Creates a splitbar window (widget) with given parameters.