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