AddPIValue.PIPoint Property
- Last UpdatedDec 15, 2025
- 2 minute read
PIPoint object or PIPoint object of PI Point to write to
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[ParameterAttribute(Position = 5, Mandatory = true, ValueFromPipeline = true, ParameterSetName = "PIPoint", HelpMessage = "PI Point")] [ValidateNotNullOrEmptyAttribute] public PIPoint[] PIPoint { get; set; }
<ParameterAttribute(Position := 5, Mandatory := true, ValueFromPipeline := true, ParameterSetName := "PIPoint", HelpMessage := "PI Point")> <ValidateNotNullOrEmptyAttribute> Public Property PIPoint As PIPoint() Get Set Dim instance As AddPIValue Dim value As PIPoint() value = instance.PIPoint instance.PIPoint = value
public: [ParameterAttribute(Position = 5, Mandatory = true, ValueFromPipeline = true, ParameterSetName = L"PIPoint", HelpMessage = L"PI Point")] [ValidateNotNullOrEmptyAttribute] property array<PIPoint^>^ PIPoint { array<PIPoint^>^ get (); void set (array<PIPoint^>^ value); }
[<ParameterAttribute(Position = 5, Mandatory = true, ValueFromPipeline = true, ParameterSetName = "PIPoint", HelpMessage = "PI Point")>] [<ValidateNotNullOrEmptyAttribute>] member PIPoint : PIPoint[] with get, set