Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
RECT.cs
Go to the documentation of this file.
1namespace B83.Win32;
2
3public struct RECT
4{
5 public int Left;
6
7 public int Top;
8
9 public int Right;
10
11 public int Bottom;
12
13 public RECT(int left, int top, int right, int bottom)
14 {
15 Left = left;
16 Top = top;
17 Right = right;
18 Bottom = bottom;
19 }
20
21 public override string ToString()
22 {
23 return "(" + Left + ", " + Top + ", " + Right + ", " + Bottom + ")";
24 }
25}
RECT(int left, int top, int right, int bottom)
Definition: RECT.cs:13
int Left
Definition: RECT.cs:5
int Right
Definition: RECT.cs:9
override string ToString()
Definition: RECT.cs:21
int Bottom
Definition: RECT.cs:11
int Top
Definition: RECT.cs:7