IntRect

The Clipper Library

IntRect

Del.» TIntRect = record left, top, right, bottom: cInt; end;

C++ »
struct IntRect { cInt left; cInt top; cInt right; cInt bottom; ... };

C#  »
public class IntRect {
  public cInt left; { get; set; }
  public cInt top; { get; set; }
  public cInt right; { get; set; }
  public cInt bottom; { get; set; } ... };

Structure returned by Clipper's GetBounds method.


See Also

ClipperBase.GetBounds, CInt