2012-03-17 10:50:10 +00:00
|
|
|
type
|
|
|
|
|
|
|
|
nsIDOMCharacterData = interface(nsIDOMNode)
|
|
|
|
['{cb75c251-afc7-444f-b2d6-b9635555f3ed}']
|
2012-03-19 14:43:54 +00:00
|
|
|
procedure Getdata( result_: DOMString); safecall;
|
2012-03-17 10:50:10 +00:00
|
|
|
procedure Setdata(adata: DOMString); safecall;
|
|
|
|
function Getlength(): idlulong; safecall;
|
|
|
|
property length : idlulong read Getlength;
|
2012-03-19 14:43:54 +00:00
|
|
|
procedure substringData(offset: idlulong; count: idlulong; result_: DOMString); safecall;
|
2012-03-17 10:50:10 +00:00
|
|
|
procedure appendData(arg: DOMString); safecall;
|
|
|
|
procedure insertData(offset: idlulong; arg: DOMString); safecall;
|
|
|
|
procedure deleteData(offset: idlulong; count: idlulong); safecall;
|
|
|
|
procedure replaceData(offset: idlulong; count: idlulong; arg: DOMString); safecall;
|
|
|
|
|
|
|
|
end;
|
|
|
|
|