YAMP.SubPlotValue.this C# (CSharp) Method

this() public method

Gets the i-th subplot, where i is the index in the list of subplots.
public this ( int index ) : SubPlot
index int The index i, which is greater or equal to 0 and lighter than Count.
return SubPlot
        public SubPlot this[int index]
        {
            get
            {
                return subplots[index];
            }
        }