AFCsvColumns.Headers Property
- Last UpdatedNov 18, 2025
- 2 minute read
- PI System
- AF SDK 2024 R2
- Developer
This read-only property returns a list of string headers for each of the AFCsvColumn
objects in the collection.
Namespace: OSIsoft.AF
Assembly: OSIsoft.AFSDK (in OSIsoft.AFSDK.dll) Version: 3.1.1.1182
Syntax
public IList<string> Headers { get; }
Public ReadOnly Property Headers As IList(Of String) Get Dim instance As AFCsvColumns Dim value As IList(Of String) value = instance.Headers
public: property IList<String^>^ Headers { IList<String^>^ get (); }
member Headers : IList<string> with get
Property Value
Type: IListStringReturns the list of string headers for the CSV column objects in the collection.
Remarks
The list of CSV column headings returned as the value of the property may be used in the
PISystem.ExportCsv Overload methods to indicate which columns are to be populated
when exporting to CSV.