AFElementTemplate.BaseTemplate Property
- Last UpdatedNov 18, 2025
- 2 minute read
- PI System
- AF SDK 2024 R2
- Developer
This property returns the AFElementTemplate which this template inherits from.
Namespace: OSIsoft.AF.Asset
Assembly: OSIsoft.AFSDK (in OSIsoft.AFSDK.dll) Version: 3.1.1.1182
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.