Meeting SDK for Windows API Reference
Loading...
Searching...
No Matches
tagWndPosition Struct Reference

The position of the window. The coordinate of position is that of monitor when the parent window is null. If the the parent window is not null, the position coordinate is that of the parent window. More...

#include <zoom_sdk_def.h>

Public Member Functions

 tagWndPosition ()
 

Data Fields

int left
 
int top
 
HWND hSelfWnd
 
HWND hParent
 

Detailed Description

The position of the window. The coordinate of position is that of monitor when the parent window is null. If the the parent window is not null, the position coordinate is that of the parent window.

Definition at line 179 of file zoom_sdk_def.h.

Constructor & Destructor Documentation

◆ tagWndPosition()

tagWndPosition::tagWndPosition ( )
inline

Definition at line 189 of file zoom_sdk_def.h.

190 {
191 left = 0;
192 top = 0;
193 hSelfWnd = nullptr;
194 hParent = nullptr;
195 }

References hParent, hSelfWnd, left, and top.

Field Documentation

◆ hParent

HWND tagWndPosition::hParent

Specifies the window handle of the parent window. If the value is nullptr, the position coordinate is the monitor coordinate.

Definition at line 188 of file zoom_sdk_def.h.

Referenced by tagWndPosition().

◆ hSelfWnd

HWND tagWndPosition::hSelfWnd

Specifies the window handle of the window itself.

Definition at line 186 of file zoom_sdk_def.h.

Referenced by tagWndPosition().

◆ left

int tagWndPosition::left

Specifies the X-axis coordinate of the top-left corner of the window.

Definition at line 182 of file zoom_sdk_def.h.

Referenced by tagWndPosition().

◆ top

int tagWndPosition::top

Specifies the Y-axis coordinate of the top-left of the window.

Definition at line 184 of file zoom_sdk_def.h.

Referenced by tagWndPosition().