DOMText.inc 436 B

12345678910111213141516171819
  1. { Parsed from WebKit.framework DOMText.h }
  2. {$ifdef TYPES}
  3. type
  4. DOMTextPtr = ^DOMText;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. DOMText = objcclass external (DOMCharacterData)
  9. public
  10. function wholeText: NSString; message 'wholeText';
  11. function splitText (offset: cuint): DOMText; message 'splitText:';
  12. function replaceWholeText (content: NSString): DOMText; message 'replaceWholeText:'; { available in 10_6 }
  13. end;
  14. {$endif}