GetDataMarkers
Get begin and end indices of data markers present on the data plot.
int GetDataMarkers( vector<int> & vBegin, vector<int> & vEnd, vector<uint>& vIDs = NULL )
return the valid count of markers.
EX1
//Get the first dataplot's datamarkers in the active graph. void DataPlot_TestDataMarkers() { GraphLayer gl = Project.ActiveLayer(); if( gl ) { DataPlot dp = gl.DataPlots(); if( dp ) { vector<int> vBegin; vector<int> vEnd; vector<uint> vIDs; dp.GetDataMarkers(vBegin, vEnd, vIDs); } } }
DataPlot::SetDataMarkers
origin.h