 | CGUIGetClientWindowArea Method |
Get the location of the Oasis montaj client window.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void GetClientWindowArea(
ref int min_x,
ref int min_y,
ref int max_x,
ref int max_y
)
public static void GetClientWindowArea(
ref int min_x,
ref int min_y,
ref int max_x,
ref int max_y
)
Public Shared Sub GetClientWindowArea (
ByRef min_x As Integer,
ByRef min_y As Integer,
ByRef max_x As Integer,
ByRef max_y As Integer
)
Public Shared Sub GetClientWindowArea (
ByRef min_x As Integer,
ByRef min_y As Integer,
ByRef max_x As Integer,
ByRef max_y As Integer
)
public:
static void GetClientWindowArea(
int% min_x,
int% min_y,
int% max_x,
int% max_y
)
public:
static void GetClientWindowArea(
int% min_x,
int% min_y,
int% max_x,
int% max_y
)
static member GetClientWindowArea :
min_x : int byref *
min_y : int byref *
max_x : int byref *
max_y : int byref -> unit
static member GetClientWindowArea :
min_x : int byref *
min_y : int byref *
max_x : int byref *
max_y : int byref -> unit
Parameters
- min_x
- Type: SystemInt32
X Min returned (0) - min_y
- Type: SystemInt32
Y Min returned (0) - max_x
- Type: SystemInt32
X Max returned (width) - max_y
- Type: SystemInt32
Y Max returned (height)
Remarks
Returns the coordinates of the client window area (where MDI document windows are placed).
The returned coordinates are 0,0 for the minimum X and Y and the window width
width and height for the maximum X and Y.
See Also