CUSTOM_BAR_INFO

Used by Editor_CustomBarOpen inline function ( EE_CUSTOM_BAR_OPEN message).

typedef struct _CUSTOM_BAR_INFO {
	size_t cbSize;
	HWND hwndCustomBar;
	HWND hwndClient;
	LPCTSTR pszTitle;
	int iPos;
} CUSTOM_BAR_INFO;

Members

cbSize

[in] Size of this data structure, in bytes. Set this member to sizeof( CUSTOM_BAR_INFO ) before sending the EE_CUSTOM_BAR_OPEN message.

hwndCustomBar

[out] The handle to the custom bar window will be stored when the EE_CUSTOM_BAR_OPEN message succeeds.

hwndClient

[in] The handle to the Client window.

pszTitle

[in] The string used for the custom bar title.

iPos

[in] The custom bar initial position.

0

The left side of the window.

1

The top of the window.

2

The right side of the window.

3

The bottom of the window.

Version

Supported on EmEditor Professional Version 6.00 or later.