YAMP.Plot2DValue.this C# (CSharp) Method

this() public method

Gets a certain point of the specified series.
public this ( int index, int point ) : PointPair
index int The 0-based index of the series.
point int The 0-based index of the point.
return PointPair
        public PointPair this[int index, int point]
        {
            get
            {
                return this[index][point];
            }
        }

Same methods

Plot2DValue::this ( int index ) : Points