AddPIValue.PointName Property
- Last UpdatedDec 15, 2025
- 2 minute read
The name or names 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 = "PointName", HelpMessage = "Name of PI Point")] [ValidateNotNullOrEmptyAttribute] public string[] PointName { get; set; }
<ParameterAttribute(Position := 0, Mandatory := true, ParameterSetName := "PointName", HelpMessage := "Name of PI Point")> <ValidateNotNullOrEmptyAttribute> Public Property PointName As String() Get Set Dim instance As AddPIValue Dim value As String() value = instance.PointName instance.PointName = value
public: [ParameterAttribute(Position = 0, Mandatory = true, ParameterSetName = L"PointName", HelpMessage = L"Name of PI Point")] [ValidateNotNullOrEmptyAttribute] property array<String^>^ PointName { array<String^>^ get (); void set (array<String^>^ value); }
[<ParameterAttribute(Position = 0, Mandatory = true, ParameterSetName = "PointName", HelpMessage = "Name of PI Point")>] [<ValidateNotNullOrEmptyAttribute>] member PointName : string[] with get, set