Left
Introduction
Code Example
// This assumes your rectangle is called RectangleInstance
float left = RectangleInstance.Left;
float right = RectangleInstance.Right;
float top = RectangleInstance.Top;
float bottom = RectangleInstance.Bottom;
// Now you can use these four values for whatever you need in your codeSetting values
Code Example - Setting Left
RectangleInstance.Left = 0;
RectangleInstance.Bottom = 0;Last updated
Was this helpful?