====== TCSRect ====== Contains the coordinates of the rectangle ===== Syntax ===== TCSRect = record Left: integer; Top: integer; Right: integer; Bottom: integer; end; ==== Fields ==== * **//Left//** * //type:// integer * //functions:// value of the X coordinate of the upper left corner of the rectangle * **//Top//** * //type:// integer * //functions:// value of the Y coordinate of the upper left corner of the rectangle * **//Right//** * //type:// integer * //functions:// value of the X coordinate of the lower right corner of the rectangle * **//Bottom//** * //type:// integer * //functions:// value of the Y coordinate of the lower right corner of the rectangle