AFElementTemplate.BaseTemplate Property
- Last UpdatedJan 12, 2026
- 2 minute read
- PI System
- AF SDK 3.2.0
- Developer
This property returns the AFElementTemplate which this template inherits from.
Namespace: OSIsoft.AF.Asset
Assembly: OSIsoft.AFSDK (in OSIsoft.AFSDK.dll) Version: 3.2.0.7
Syntax
public AFElementTemplate BaseTemplate { get; set; }
Public Property BaseTemplate As AFElementTemplate Get Set Dim instance As AFElementTemplate Dim value As AFElementTemplate value = instance.BaseTemplate instance.BaseTemplate = value
public: property AFElementTemplate^ BaseTemplate { AFElementTemplate^ get (); void set (AFElementTemplate^ value); }
member BaseTemplate : AFElementTemplate with get, set
Property Value
Type: AFElementTemplateReturns the AFElementTemplate, which this template inherits from.
Remarks
Use this property to implement inheritance of element template's
AFAttributeTemplate and AFPort objects. The current template
will inherit all the attributes and ports of the base template, which can then been extended
or overridden in this template.