YAMP.Plot2DValue.this C# (CSharp) 메소드

this() 공개 메소드

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.
리턴 PointPair
        public PointPair this[int index, int point]
        {
            get
            {
                return this[index][point];
            }
        }

Same methods

Plot2DValue::this ( int index ) : Points