AFValue.Annotated Property
- Last UpdatedNov 18, 2025
- 2 minute read
- PI System
- AF SDK 2024 R2
- Developer
Indicates whether the value contains an annotation.
Namespace: OSIsoft.AF.Asset
Assembly: OSIsoft.AFSDK (in OSIsoft.AFSDK.dll) Version: 3.1.1.1182
Syntax
public bool Annotated { get; set; }
Public Property Annotated As Boolean Get Set Dim instance As AFValue Dim value As Boolean value = instance.Annotated instance.Annotated = value
public: property bool Annotated { bool get (); void set (bool value); }
member Annotated : bool with get, set
Property Value
Type: Booleanif the value contains an annotation.
Remarks
An annotation is specific to the PIPoint Data Reference. If you wish to obtain the annotation, see the included example.
The equivalent result can be obtained directly from the Status by the following C# expression:
(value.Status & AFValueStatus.Annotated) == AFValueStatus.Annotated