DOMRect.inc 424 B

1234567891011121314151617181920
  1. { Parsed from WebKit.framework DOMRect.h }
  2. {$ifdef TYPES}
  3. type
  4. DOMRectPtr = ^DOMRect;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. DOMRect = objcclass external (DOMObject)
  9. public
  10. function top: DOMCSSPrimitiveValue; message 'top';
  11. function right: DOMCSSPrimitiveValue; message 'right';
  12. function bottom: DOMCSSPrimitiveValue; message 'bottom';
  13. function left: DOMCSSPrimitiveValue; message 'left';
  14. end;
  15. {$endif}