ContainedName property
- Last UpdatedJul 23, 2024
- 1 minute read
Sets or returns this object’s contained name. When setting the contained name, the object does not need to be checked out, and the operation is immediate.
Class
ITemplate
Syntax
[C#]
string ContainedName { set; get; };
[Visual C++]
//
// Returns Contained name of this object (eg. Inlet)
[propget]
HRESULT ContainedName(
// The contained name of this object (eg. Inlet)
[out, retval] BSTR* theContainedName
);
// Sets the contained name of this object (eg. Inlet)
// The object does not need to be checked out; the
// operation is immediate.
[propput]
HRESULT ContainedName(
// The contained name of this object (eg. Inlet)
[in] BSTR newContainedName
);