libsbmlcs.Delay.setMath C# (CSharp) Method

setMath() public method

public setMath ( ASTNode math ) : int
math ASTNode
return int
        public int setMath(ASTNode math)
        {
            int ret = libsbmlPINVOKE.Delay_setMath(swigCPtr, ASTNode.getCPtr(math));
            return ret;
        }

Usage Example

 public void test_Delay()
 {
     Delay d = new Delay(2,4);
       assertEquals( false, (d.hasRequiredElements()) );
       d.setMath(libsbml.parseFormula("a+b"));
       assertEquals( true, d.hasRequiredElements() );
       d = null;
 }
All Usage Examples Of libsbmlcs.Delay::setMath