Move marker lines in layer.
int MoveMarkerLine( double dNewPos, int nIndex, BOOL bVertical = TRUE )
0 if success
EX1
//assume there is a row numbers symbol plot void GraphLayer_MoveMarkerLine_ex1() { GraphLayer gl = Project.ActiveLayer(); if( !gl.IsValid() ) return; vector vPos; vPos.Add(1); vPos.Add(4); gl.SetMarkerLines(vPos, TRUE, TRUE); int nRet = gl.MoveMarkerLine(6, 0, TRUE); printf("MoveMarkerLine return: %d\n", nRet); }
GraphLayer::SetMarkerLines
origin.h