Property

Method

Event

 

 

GetExtendedTag

Gets the name and attribute data of a user-defined tag.

Syntax

    HRESULT GetExtendedTag(
    BSTR* pTag
    );

Parameters

pTag

[out, retval] The name and attribute information of the tag. A semicolon (;) is used as delimiter.

Return Values

0 (always)

Sample Codes

VBScript

function TestBtn_OnClick
dim object
set object = document.editForm
ext = object.wec.GetExtendedTag
msgbox ext
end function