ChangeLastPlotTo() public method

Sets the lastplot to be used to the given value.
public ChangeLastPlotTo ( PlotValue plot ) : ParseContext
plot PlotValue The plot to change to.
return ParseContext
示例#1
0
 SubPlotValue AddSubPlot(ParseContext context, int row, int column, PlotValue plot, int rowSpan = 1, int columnSpan = 1)
 {
     AddSubPlot(row, column, plot, rowSpan, columnSpan);
     context.ChangeLastPlotTo(this);
     return this;
 }
示例#2
0
 SubPlotValue AddSubPlot(ParseContext context, int row, int column, PlotValue plot, int rowSpan = 1, int columnSpan = 1)
 {
     AddSubPlot(row, column, plot, rowSpan, columnSpan);
     context.ChangeLastPlotTo(this);
     return(this);
 }