AddPIValue.PointId Property
- Last UpdatedDec 15, 2025
- 2 minute read
The PointID or PointIDs of the PI Point(s) to write to
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 3.1.1.0 (3.1.1.466)
Syntax
[ParameterAttribute(Position = 0, Mandatory = true, ParameterSetName = "PointId", HelpMessage = "Id of PI Point")] [ValidateNotNullOrEmptyAttribute] public int[] PointId { get; set; }
<ParameterAttribute(Position := 0, Mandatory := true, ParameterSetName := "PointId", HelpMessage := "Id of PI Point")> <ValidateNotNullOrEmptyAttribute> Public Property PointId As Integer() Get Set Dim instance As AddPIValue Dim value As Integer() value = instance.PointId instance.PointId = value
public: [ParameterAttribute(Position = 0, Mandatory = true, ParameterSetName = L"PointId", HelpMessage = L"Id of PI Point")] [ValidateNotNullOrEmptyAttribute] property array<int>^ PointId { array<int>^ get (); void set (array<int>^ value); }
[<ParameterAttribute(Position = 0, Mandatory = true, ParameterSetName = "PointId", HelpMessage = "Id of PI Point")>] [<ValidateNotNullOrEmptyAttribute>] member PointId : int[] with get, set