2012-03-17 10:50:10 +00:00
|
|
|
type
|
|
|
|
|
|
|
|
nsIDOMAttr = interface(nsIDOMNode)
|
|
|
|
['{03da4bc9-1b9a-41dc-a1a4-32414d48d704}']
|
2012-03-19 14:43:54 +00:00
|
|
|
procedure Getname( result_: DOMString); safecall;
|
2012-03-17 10:50:10 +00:00
|
|
|
function Getspecified(): longbool; safecall;
|
|
|
|
property specified : longbool read Getspecified;
|
2012-03-19 14:43:54 +00:00
|
|
|
procedure Getvalue( result_: DOMString); safecall;
|
2012-03-17 10:50:10 +00:00
|
|
|
procedure Setvalue(avalue: DOMString); safecall;
|
|
|
|
function GetownerElement(): nsIDOMElement; safecall;
|
|
|
|
property ownerElement : nsIDOMElement read GetownerElement;
|
|
|
|
function GetisId(): longbool; safecall;
|
|
|
|
property isId : longbool read GetisId;
|
|
|
|
|
|
|
|
end;
|
|
|
|
|