class Box
Represents position and size of a on the screen.
public Rect RectOuter
Position and size of the element on the screen, including both - its padding AND margin.
public Rect RectInner
Position and size of only the element's inner content on the screen, without padding OR margin.
public Margin Padding
The size of padding.
public Margin Border
The size of border.
public Margin Margin
The size of border.
public Rect Rect
Position and size of the element on the screen, including its padding, but not margin.
public Rect ClipRect
minus the border sizes. Used internally to "clip" (hide) everything outside of these bounds, if the panels is not set to .
public float Left { get; }
Position of the left edge in screen coordinates.
public float Right { get; }
Position of the right edge in screen coordinates.
public float Top { get; }
Position of the top edge in screen coordinates.
public float Bottom { get; }
Position of the bottom edge in screen coordinates.
public Type GetType( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public Box( )
😔 No documentation found.