ICANode2

[
    object,
    uuid(63125354-BBCE-4352-9884-3156F5287CBF),
    dual,
    nonextensible,
    helpstring("ICANode2 Interface"),
    pointer_default(unique)
]
interface ICANode2 : IDispatch{
    [propget, id(1), helpstring("property History")] HRESULT History([out, retval] IDispatch** pVal);
    [id(2), helpstring("method GetAllAttributes")] HRESULT GetAllAttributes([out, retval] VARIANT* pvarAttributes);
    [id(3), helpstring("method CopyAttributes")] HRESULT CopyAttributes([in] IDispatch* pDispNodeTo);
};

属性History

只读。获得文章历史数据。ICANodeHistoryCollection

方法GetAllAttributes

获得节点的全部扩展属性。返回一个SAFEARRAY。其中,0,2,4,6...等偶数行,是设置名称,1,3,5,7...是设置的值。

方法CopyAttributes

将一个节点的扩展属性,全部复制到另外一个节点中。