DOMHTMLTableRowElement.inc 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. { Parsed from Webkit.framework DOMHTMLTableRowElement.h }
  2. { Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Sat Oct 10 8:19:00 ICT 2009 }
  3. {$ifdef TYPES}
  4. {$ifndef DOMHTMLTABLEROWELEMENT_PAS_T}
  5. {$define DOMHTMLTABLEROWELEMENT_PAS_T}
  6. {$endif}
  7. {$endif}
  8. {$ifdef RECORDS}
  9. {$ifndef DOMHTMLTABLEROWELEMENT_PAS_R}
  10. {$define DOMHTMLTABLEROWELEMENT_PAS_R}
  11. {$endif}
  12. {$endif}
  13. {$ifdef FUNCTIONS}
  14. {$ifndef DOMHTMLTABLEROWELEMENT_PAS_F}
  15. {$define DOMHTMLTABLEROWELEMENT_PAS_F}
  16. {$endif}
  17. {$endif}
  18. {$ifdef EXTERNAL_SYMBOLS}
  19. {$ifndef DOMHTMLTABLEROWELEMENT_PAS_S}
  20. {$define DOMHTMLTABLEROWELEMENT_PAS_S}
  21. {$endif}
  22. {$endif}
  23. {$ifdef FORWARD}
  24. DOMHTMLTableRowElement = objcclass;
  25. DOMHTMLTableRowElementPointer = ^DOMHTMLTableRowElement;
  26. {$endif}
  27. {$ifdef CLASSES}
  28. {$ifndef DOMHTMLTABLEROWELEMENT_PAS_C}
  29. {$define DOMHTMLTABLEROWELEMENT_PAS_C}
  30. { DOMHTMLTableRowElement }
  31. DOMHTMLTableRowElement = objcclass(DOMHTMLElement)
  32. public
  33. class function alloc: DOMHTMLTableRowElement; message 'alloc';
  34. function rowIndex: cint; message 'rowIndex';
  35. function sectionRowIndex: cint; message 'sectionRowIndex';
  36. function cells: DOMHTMLCollection; message 'cells';
  37. procedure setAlign (newValue: NSString); message 'setAlign:';
  38. function align: NSString; message 'align';
  39. procedure setBgColor (newValue: NSString); message 'setBgColor:';
  40. function bgColor: NSString; message 'bgColor';
  41. procedure setCh (newValue: NSString); message 'setCh:';
  42. function ch: NSString; message 'ch';
  43. procedure setChOff (newValue: NSString); message 'setChOff:';
  44. function chOff: NSString; message 'chOff';
  45. procedure setVAlign (newValue: NSString); message 'setVAlign:';
  46. function vAlign: NSString; message 'vAlign';
  47. function insertCell(index: cint): DOMHTMLElement; message 'insertCell:';
  48. procedure deleteCell(index: cint); message 'deleteCell:';
  49. end; external;
  50. {$endif}
  51. {$endif}