Windows SDK 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. Here are more detailed structural descriptions. More...

#include <zoom_sdk_def.h>

Public Member Functions

 tagWndPosition ()
 

Data Fields

int left
 Specifies the X-axis coordinate of the top-left corner of the window. More...
 
int top
 Specifies the Y-axis coordinate of the top-left of the window. More...
 
HWND hSelfWnd
 Specifies the window handle of the window itself. More...
 
HWND hParent
 Specifies the window handle of the parent window. If the value is NULL, the position coordinate is the monitor coordinate. More...
 

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. Here are more detailed structural descriptions.

Definition at line 92 of file zoom_sdk_def.h.

Constructor & Destructor Documentation

◆ tagWndPosition()

tagWndPosition::tagWndPosition ( )
inline

Definition at line 98 of file zoom_sdk_def.h.

99 {
100 left = 0;
101 top = 0;
102 hSelfWnd = NULL;
103 hParent = NULL;
104 }
HWND hSelfWnd
Specifies the window handle of the window itself.
Definition: zoom_sdk_def.h:96
HWND hParent
Specifies the window handle of the parent window. If the value is NULL, the position coordinate is th...
Definition: zoom_sdk_def.h:97
int top
Specifies the Y-axis coordinate of the top-left of the window.
Definition: zoom_sdk_def.h:95
int left
Specifies the X-axis coordinate of the top-left corner of the window.
Definition: zoom_sdk_def.h:94

References hParent, hSelfWnd, left, and top.

Field Documentation

◆ hParent

HWND tagWndPosition::hParent

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

Definition at line 97 of file zoom_sdk_def.h.

Referenced by tagWndPosition().

◆ hSelfWnd

HWND tagWndPosition::hSelfWnd

Specifies the window handle of the window itself.

Definition at line 96 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 94 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 95 of file zoom_sdk_def.h.

Referenced by tagWndPosition().