Tagname property
- Last UpdatedJul 23, 2024
- 1 minute read
Returns or sets this object’s tagname.
Class
IInstance
Syntax
[C#]
string Tagname { set; get; };
[Visual C++]
// Returns the Tagname of this object.
[propget]
HRESULT Tagname(
// The Tagname of this object.
[out, retval] BSTR* theTagname
);
// Sets the Tagname of this object.
// The object does not need to be checked out;
// the operation is immediate.
[propput]
HRESULT Tagname(
// The Tagname of this object.
[in] BSTR newTagName
);