CustomStoredData
Stored custom data.
Example
app = pf.GetApplication() app:NewProject() app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/Stored_Data.pfs]]) -- Retrieve the 'CustomStoredData' called 'CustomData' customData = app.StoredData["CustomData"] graph = app.CartesianGraphs:Add() customDataTrace = graph.Traces:Add(customData) -- Store a copy of the custom data storedData = customData:GetDataSet():StoreData(pf.Enums.StoredDataTypeEnum.Custom)
Inheritance
The CustomStoredData object is derived from the ResultData object.
Property List
Method List
- Delete ()
- Delete the stored data.
- ExportData (filename string)
- Export the custom data to the specified tab-separated file.
- GetDataSet ()
- Returns a data set containing the custom data values. (Returns a DataSet object.)
Property Details
Method Details
- Delete ()
- Delete the stored data.
- ExportData (filename string)
- Export the custom data to the specified tab-separated file.
- Input Parameters
- filename(string)
- The name of the exported data file without its extension.
- GetDataSet ()
- Returns a data set containing the custom data values.
- Return
- DataSet
- The data set containing the custom data values.