SetAFUnitOfMeasure.Abbreviation Property
- Last UpdatedDec 15, 2025
- 2 minute read
Abbreviation of the AF Unit of Measure to set. This can be an SI abbreviation or custom abbreviation
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 3.1.1.0 (3.1.1.466)
Syntax
[ParameterAttribute(Position = 1, Mandatory = false, ValueFromPipeline = false, HelpMessage = "Unit of Measure Abbreviation")] [ValidateNotNullOrEmptyAttribute] public string Abbreviation { get; set; }
<ParameterAttribute(Position := 1, Mandatory := false, ValueFromPipeline := false, HelpMessage := "Unit of Measure Abbreviation")> <ValidateNotNullOrEmptyAttribute> Public Property Abbreviation As String Get Set Dim instance As SetAFUnitOfMeasure Dim value As String value = instance.Abbreviation instance.Abbreviation = value
public: [ParameterAttribute(Position = 1, Mandatory = false, ValueFromPipeline = false, HelpMessage = L"Unit of Measure Abbreviation")] [ValidateNotNullOrEmptyAttribute] property String^ Abbreviation { String^ get (); void set (String^ value); }
[<ParameterAttribute(Position = 1, Mandatory = false, ValueFromPipeline = false, HelpMessage = "Unit of Measure Abbreviation")>] [<ValidateNotNullOrEmptyAttribute>] member Abbreviation : string with get, set