PlotFunctionElement.setColumn C# (CSharp) Method

setColumn() public method

public setColumn ( Element, a ) : void
a Element,
return void
    public void setColumn(Element a)
    { col = a; }
    public Element getColumn()

Same methods

PlotFunctionElement::setColumn ( IntegerElement, a ) : void

Usage Example

Ejemplo n.º 1
0
    static void Main()
    {
        PlotFunctionElement plotElement = new PlotFunctionElement();
        IntegerElement row = new IntegerElement();
        row.setText("2");
        
        IntegerElement col = new IntegerElement();
        col.setText("2");
        VariableElement varElement = new VariableElement();
        varElement.setText("a");
        DoubleElement dblElement = new DoubleElement();

        plotElement.setPlotFunction("subPlot");
        plotElement.setRow(row);
        plotElement.setColumn(col);
        plotElement.setData(varElement);
        


    }