MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / GetPositionOfTabDisplayArea

Method GetPositionOfTabDisplayArea

source/script_gui.cpp:10209–10216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10207
10208
10209POINT GuiType::GetPositionOfTabDisplayArea(GuiControlType &aTabControl)
10210// Gets position of tab control's display area relative to parent window's client area.
10211{
10212 RECT rect;
10213 GetTabDisplayAreaRect(aTabControl.hwnd, rect);
10214 POINT pt = { rect.left, rect.top };
10215 return pt;
10216}
10217
10218
10219

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected