Area property
- Last UpdatedJul 23, 2024
- 1 minute read
Get or set the area of this object. An AppObject area must be set using the SetContainer or SetHost methods. The object does not need to be checked out, and the operation is immediate.
Class
ITemplate
Syntax
[C#]
string Area { set; get; };
[Visual C++]
// Returns name of the Area object, or blank if the
// object doesn't have an Area.
[propget]
HRESULT Area(
[out, retval] BSTR* theArea
);
// Set the Area of this object.
[propput]
HRESULT Area(
// The name of the Area, or blank to unassign
// from existing Area.
[in] BSTR NewArea
);