SetPIPoint.Attributes Property
- Last UpdatedDec 15, 2025
- 2 minute read
The attributes to set on the existing PI Point. Use Get-Help Set-PIPoint -Examples to see usage.
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[ParameterAttribute(Position = 0, Mandatory = true, ParameterSetName = "PIPoint", HelpMessage = "Attributes to edit")] [ParameterAttribute(Position = 1, Mandatory = true, ParameterSetName = "PointName", HelpMessage = "Attributes to edit")] [ParameterAttribute(Position = 1, Mandatory = true, ParameterSetName = "PointID", HelpMessage = "Attributes to edit")] public Hashtable Attributes { get; set; }
<ParameterAttribute(Position := 0, Mandatory := true, ParameterSetName := "PIPoint", HelpMessage := "Attributes to edit")> <ParameterAttribute(Position := 1, Mandatory := true, ParameterSetName := "PointName", HelpMessage := "Attributes to edit")> <ParameterAttribute(Position := 1, Mandatory := true, ParameterSetName := "PointID", HelpMessage := "Attributes to edit")> Public Property Attributes As Hashtable Get Set Dim instance As SetPIPoint Dim value As Hashtable value = instance.Attributes instance.Attributes = value
public: [ParameterAttribute(Position = 0, Mandatory = true, ParameterSetName = L"PIPoint", HelpMessage = L"Attributes to edit")] [ParameterAttribute(Position = 1, Mandatory = true, ParameterSetName = L"PointName", HelpMessage = L"Attributes to edit")] [ParameterAttribute(Position = 1, Mandatory = true, ParameterSetName = L"PointID", HelpMessage = L"Attributes to edit")] property Hashtable^ Attributes { Hashtable^ get (); void set (Hashtable^ value); }
[<ParameterAttribute(Position = 0, Mandatory = true, ParameterSetName = "PIPoint", HelpMessage = "Attributes to edit")>] [<ParameterAttribute(Position = 1, Mandatory = true, ParameterSetName = "PointName", HelpMessage = "Attributes to edit")>] [<ParameterAttribute(Position = 1, Mandatory = true, ParameterSetName = "PointID", HelpMessage = "Attributes to edit")>] member Attributes : Hashtable with get, set