libsbml.SpeciesReference.isSetStoichiometryMath C# (CSharp) Method

isSetStoichiometryMath() public method

public isSetStoichiometryMath ( ) : bool
return bool
        public bool isSetStoichiometryMath()
        {
            bool ret = libsbmlPINVOKE.SpeciesReference_isSetStoichiometryMath(swigCPtr);
            return ret;
        }

Usage Example

Example #1
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="aSpeciesReference"></param>
 /// <returns></returns>
 public static string GetStoichiometryMath(SpeciesReference aSpeciesReference)
 {
     string aString_R = null;
     if (aSpeciesReference.isSetStoichiometryMath())
     {
         ASTNode anASTNode_R = aSpeciesReference.getStoichiometryMath().getMath();
         aString_R = libsbml.libsbml.formulaToString(anASTNode_R);
     }
     return aString_R;
 }
All Usage Examples Of libsbml.SpeciesReference::isSetStoichiometryMath